-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.47 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.47 KB
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
{
"name": "kd",
"main": "./lib/kd",
"version": "0.2.1",
"description": "Koding.com's Atom package for its kd cli tool.",
"keywords": [
"kd",
"koding",
"atom",
"atom-package"
],
"repository": "https://github.com/koding/kd-atom",
"license": "GPL-3.0",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"deserializers": {
"KodingController": "deserialize"
},
"scripts": {
"lint": "eslint lib",
"lint:fix": "eslint lib --fix",
"precommit": "lint-staged"
},
"dependencies": {
"atom-package-deps": "^4.5.0",
"atom-space-pen-views": "^2.2.0",
"classnames": "^2.2.5",
"debug": "^2.6.1",
"electron-json-storage": "^3.0.1",
"execa": "^0.6.0",
"kd.js": "^1.1.30",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"react": "^15.5.4",
"react-dom": "^15.5.4"
},
"devDependencies": {
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-promise": "^3.4.1",
"eslint-plugin-react": "^6.10.3",
"eslint-plugin-standard": "^2.0.1",
"husky": "^0.13.3",
"lint-staged": "^3.4.1",
"prettier": "^1.2.2"
},
"consumedServices": {
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
}
},
"lint-staged": {
"lib/**/*.js": [
"prettier --single-quote --trailing-comma es5 --no-semi --write",
"git add"
]
}
}