-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1 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
{
"name": "kinder",
"version": "1.0.2",
"description": "Easily create simple shell commands with a local config file.",
"author": "Shay Davidson <[email protected]>",
"keywords": [
"simple",
"cli",
"shell",
"command"
],
"repository": {
"type": "git",
"url": "https://github.com/ShayDavidson/kinder"
},
"license": "MIT",
"main": "index.js",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"lint": "eslint *.js",
"format": "eslint --fix *.js"
},
"husky": {
"hooks": {
"pre-commit": "npm run format"
}
},
"dependencies": {
"colors": "^1.1.2",
"dot-file-config": "^0.6.1",
"lodash.maxby": "^4.6.0",
"node-ask": "^1.0.1"
},
"devDependencies": {
"eslint": "^4.11.0",
"eslint-config-prettier": "^2.8.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-prettier": "^2.3.0",
"eslint-plugin-promise": "^3.6.0",
"husky": "^0.15.0-rc.3",
"prettier": "^1.8.2"
}
}