-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 909 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "@homegrown/word-counter",
"version": "0.1.7",
"description": "word counter which support CJK and emoji",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"dev": "tsc -w --inlineSourceMap",
"build": "tsc",
"test": "mocha --reporter spec",
"update:emoji": "node script/updateEmoji.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/curly210102/word-counter.git"
},
"keywords": [
"word",
"count"
],
"author": "Curly Brackets",
"license": "ISC",
"bugs": {
"url": "https://github.com/curly210102/word-counter/issues"
},
"homepage": "https://github.com/curly210102/word-counter#readme",
"devDependencies": {
"chai": "^4.3.4",
"emoji-test-regex-pattern": "^1.6.0",
"mocha": "^9.1.2",
"typescript": "^4.4.3"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}