-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.11 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
{
"name": "gitum-cli",
"version": "0.1.3",
"description": "git user management cli tool",
"main": "./bin/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"eslint": "./node_modules/.bin/eslint app.js"
},
"bin": {
"gum": "./bin/app.js"
},
"preferGlobal": true,
"repository": {
"type": "git",
"url": "git+https://github.com/collierrgbsitisfise/gitum-cli.git"
},
"keywords": [
"git",
"cli",
"user",
"management"
],
"author": "vadim nicolaev",
"license": "ISC",
"bugs": {
"url": "https://github.com/collierrgbsitisfise/gitum-cli/issues"
},
"homepage": "https://github.com/collierrgbsitisfise/gitum-cli#readme",
"devDependencies": {
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.2"
},
"husky": {
"hooks": {
"pre-commit": "git add . && npm run eslint",
"pre-push": "echo 'here i will run unit tests'"
}
},
"dependencies": {
"commander": "^2.20.0",
"lowdb": "^1.0.0"
}
}