-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.35 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
{
"name": "atom-hooks",
"main": "./build/atom-hooks",
"version": "0.3.2",
"description": "Execute commands depending on file path and editor events (e.g. save)",
"keywords": [],
"repository": "https://github.com/SleepWalker/atom-hooks",
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"consumedServices": {
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
}
},
"scripts": {
"build": "BABEL_ENV=atom babel lib --out-dir build",
"test": "atom --test test",
"release": "npm run test && rm -rf build && npm run build && git add build -A",
"flow": "flow"
},
"atomTestRunner": "./test-runner",
"jest": {
"clearMocks": true,
"roots": [
"lib",
"test"
]
},
"dependencies": {
"atom-select-list": "^0.7.1",
"babel-runtime": "^6.26.0",
"minimatch": "^3.0.4"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^22.4.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-flow": "^6.23.0",
"eslint": "^4.7.1",
"flow-bin": "^0.69.0",
"jest": "^22.4.3",
"jest-cli": "^22.4.3",
"prettier-eslint": "^8.2.0"
}
}