forked from noseglid/atom-build
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.2 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
{
"name": "build",
"main": "./lib/build",
"version": "0.55.0",
"description": "Build your current project, directly from Atom",
"repository": "https://github.com/noseglid/atom-build",
"license": "MIT",
"engines": {
"atom": ">=0.50.0"
},
"dependencies": {
"ansi_up": "^1.3.0",
"atom-space-pen-views": "^2.0.3",
"cross-spawn-async": "^2.1.8",
"cson-parser": "^1.3.0",
"getmac": "^1.0.7",
"grim": "^2.0.0",
"js-yaml": "^3.4.6",
"lodash": "^3.8.0",
"node-uuid": "^1.4.3",
"tree-kill": "^1.0.0",
"xregexp": "^2.0.0"
},
"devDependencies": {
"atom-build-spec-helpers": "^0.3.0",
"babel-eslint": "^4.1.5",
"escope": "3.3.0",
"eslint": "^1.10.1",
"eslint-config-atom-build": "^2.0.0",
"fs-extra": "^0.23.0",
"temp": "^0.8.1"
},
"consumedServices": {
"builder": {
"versions": {
"^1.0.0": "consumeBuilderLegacy",
"^2.0.0": "consumeBuilder"
}
},
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
}
},
"scripts": {
"test": "./node_modules/.bin/eslint ."
},
"keywords": [
"build",
"compile",
"gulp",
"make",
"productivity"
]
}