-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
50 lines (50 loc) · 1.1 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
{
"name": "node-shell",
"description": "Atom Shell bindings for nodeJS",
"main": "./index.js",
"author": {
"name": "Stanislas Polu",
"email": "[email protected]",
"url": "http://github.com/spolu"
},
"version": "0.1.5",
"dependencies": {
"async": "0.7.x",
"mkdirp": "0.3.x",
"fs-extra": "0.8.x",
"optimist": "0.6.x",
"request": "2.36.x",
"dnode": "1.2.x"
},
"repository": {
"type": "git",
"url": "http://github.com/spolu/node-shell.git"
},
"bugs": {
"url": "https://github.com/spolu/node-shell/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/spolu/node-shell/raw/master/LICENSE"
}
],
"ATOM_SHELL_VERSION": "v0.13.3",
"ATOM_SHELL_BASE_URL": "https://github.com/atom/atom-shell/releases/download/",
"ATOM_SHELL_RELEASE_PLATFORMS": {
"darwin": {
"x64": "darwin-x64"
},
"linux": {
"ia32": "linux-ia32",
"x64": "linux-x64"
},
"win32": {
"ia32": "win32-ia32",
"x64": "win32-ia32"
}
},
"scripts": {
"postinstall": "node script/bootstrap.js"
}
}