-
Notifications
You must be signed in to change notification settings - Fork 97
/
package.json
65 lines (65 loc) · 1.38 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": "build",
"main": "./lib/build",
"version": "0.70.0",
"description": "Build your current project, directly from Atom",
"repository": "https://github.com/noseglid/atom-build",
"license": "MIT",
"engines": {
"atom": ">=1.0.0"
},
"dependencies": {
"atom-package-deps": "^4.0.1",
"atom-space-pen-views": "^2.0.3",
"cross-spawn": "^4.0.2",
"cson-parser": "^1.3.0",
"getmac": "^1.0.7",
"js-yaml": "^3.4.6",
"term.js": "https://github.com/jeremyramin/term.js/tarball/de1635fc2695e7d8165012d3b1d007d7ce60eea2",
"tree-kill": "^1.0.0",
"xregexp": "^3.1.0"
},
"devDependencies": {
"atom-build-spec-helpers": "^0.4.0",
"babel-eslint": "^6.0.0",
"eslint": "^2.10.1",
"eslint-config-atom-build": "^3.0.0",
"fs-extra": "^2.1.2",
"temp": "^0.8.1"
},
"package-deps": [
"busy-signal"
],
"consumedServices": {
"builder": {
"versions": {
"^2.0.0": "consumeBuilder"
}
},
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
},
"busy-signal": {
"versions": {
"^1.0.0": "consumeBusySignal"
}
},
"linter-indie": {
"versions": {
"1.0.0": "consumeLinterRegistry"
}
}
},
"scripts": {
"test": "eslint ."
},
"keywords": [
"build",
"compile",
"gulp",
"make",
"productivity"
]
}