-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.44 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "translator-cli",
"version": "1.0.0",
"description": "The command line app for translate",
"bin": {
"translator": "bin/cli.js",
"fanyi": "bin/cli.js",
"fy": "bin/cli.js"
},
"scripts": {
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"keywords": [
"translation",
"fanyi",
"cli"
],
"author": "Liu Xing",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/liuxing/translator-cli.git"
},
"bugs": {
"url": "https://github.com/liuxing/translator-cli/issues"
},
"homepage": "https://github.com/liuxing/translator-cli#readme",
"dependencies": {
"chalk": "^2.4.1",
"commander": "^2.15.1",
"configstore": "^3.1.2",
"superagent": "^3.8.3",
"update-notifier": "^2.5.0",
"xml2js": "^0.4.19"
},
"devDependencies": {
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.1.0",
"execa": "^0.10.0",
"husky": "^1.0.0-rc.4",
"jest": "^22.4.3",
"lint-staged": "^7.1.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}