forked from notablemind/jupyter-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 934 Bytes
/
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
{
"name": "jupyter-nodejs",
"version": "2.1.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "babel lib -d build",
"build-ext": "babel ext -d build/ext",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Jared Forsyth",
"repository": {
"type": "git",
"url": "http://github.com:notablemind/jupyter-nodejs.git"
},
"homepage": "https://github.com/notablemind/jupyter-nodejs",
"bugs": {
"url": "https://github.com/notablemind/jupyter-nodejs/issues"
},
"files": [
"build",
"lib",
"install.js",
"config.js"
],
"prepublish": "make",
"license": "ISC",
"dependencies": {
"async": "^0.9.0",
"babel": "^5.1.11",
"babel-runtime": "^6.23.0",
"bencode": "^0.7.0",
"coffeescript": "^1.9.2",
"mkdirp": "^0.5.1",
"superagent": "^1.2.0",
"zmq": "^2.15.3"
},
"devDependencies": {
"mkdirp": "^0.5.0"
}
}