-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.04 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
{
"name": "vocabulary-cli",
"version": "1.0.0-alpha.17",
"description": "Command line tool for vocabulary",
"main": "index.js",
"bin": {
"vocabulary-cli": "bin/vocabulary-cli",
"voc-cli": "bin/vocabulary-cli"
},
"scripts": {
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yangaobo/vocabulary-cli.git"
},
"keywords": [
"vocabulary",
"cli"
],
"author": "Aobo Yang",
"license": "MIT",
"bugs": {
"url": "https://github.com/yangaobo/vocabulary-cli/issues"
},
"homepage": "https://github.com/yangaobo/vocabulary-cli#readme",
"dependencies": {
"chalk": "^1.1.3",
"lodash": "^4.15.0",
"mkdirp": "^0.5.1",
"vorpal": "^1.11.4"
},
"devDependencies": {
"eslint": "^6.6.0"
},
"eslintConfig": {
"extends": "eslint:recommended",
"env": {
"node": true
},
"parserOptions": {
"ecmaVersion": 6
},
"rules": {
"no-console": "off"
}
}
}