-
-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathpackage.json
42 lines (42 loc) · 1.09 KB
/
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
39
40
41
42
{
"name": "yddict",
"version": "1.3.0",
"description": "A CLI tool for querying youdao dict.",
"main": "./index.js",
"scripts": {
"test": "nyc --reporter=text mocha",
"lint": "eslint .",
"coverage": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"precommit": "npm test && npm run lint"
},
"author": "kenshinji <[email protected]>",
"license": "MIT",
"bin": {
"yd": "./index.js"
},
"dependencies": {
"chalk": "^2.1.0",
"cheerio": "^1.0.0-rc.2",
"cli-spinner": "^0.2.6",
"configstore": "^3.1.1",
"is-chinese": "^1.2.5",
"no-case": "^2.3.2",
"request": "^2.81.0",
"urlencode": "^1.1.0"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"dirty-chai": "^2.0.1",
"eslint": "^8.24.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.1.0",
"husky": "^0.14.3",
"mocha": "^10.0.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0"
}
}