-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
65 lines (65 loc) · 1.49 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
{
"name": "kody",
"description": ".files in node",
"version": "2.0.1",
"homepage": "https://github.com/jh3y/kody",
"author": {
"name": "jh3y <jh3y@users.noreply.github.com>"
},
"repository": {
"type": "git",
"url": "git@github.com:jh3y/kody.git"
},
"bugs": {
"url": "https://github.com/jh3y/kody/issues"
},
"license": "MIT",
"fields": [
"./lib/**/*.*"
],
"scripts": {
"precommit": "lint-staged",
"prepublish": "make build"
},
"preferGlobal": true,
"bin": {
"kody": "./bin/kody"
},
"engines": {
"node": ">= 6.0.0"
},
"dependencies": {
"chalk": "^2.4.1",
"commander": "^2.16.0",
"inquirer": "^6.0.0",
"ora": "^3.0.0",
"regenerator-runtime": "^0.12.0",
"shelljs": "^0.8.2"
},
"lint-staged": {
"src/**/*.{js}": [
"make lint",
"git add"
]
},
"keywords": [],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.6",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.1.2",
"eslint": "^5.2.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.2",
"husky": "^0.14.3",
"lint-staged": "^7.2.0",
"mocha": "^5.2.0",
"prettier": "^1.13.7",
"prettier-eslint": "^8.8.2"
}
}