forked from n-riesco/ijavascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.26 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
{
"name": "ijavascript",
"version": "5.0.8",
"description": "IJavascript is a javascript kernel for IPython's graphical notebook",
"keywords": [
"javascript",
"kernel",
"ipython",
"jupyter"
],
"homepage": "https://n-riesco.github.io/ijavascript",
"bugs": {
"url": "https://github.com/n-riesco/ijavascript/issues"
},
"license": "BSD-3-Clause",
"author": {
"author": "Nicolas Riesco",
"email": "[email protected]",
"url": "http://www.nicolasriesco.net/"
},
"repository": {
"type": "git",
"url": "https://github.com/n-riesco/ijavascript.git"
},
"bin": {
"ijs": "bin/ijavascript.js"
},
"dependencies": {
"jmp": "0.2.x",
"nel": "0.1.x",
"node-uuid": "^1.4.2"
},
"devDependencies": {
"jsdoc": "latest",
"jshint": "latest"
},
"scripts": {
"doc": "python scripts/doc-build.py",
"doc:publish": "node scripts/doc-publish.js gh-pages https://github.com/n-riesco/ijavascript",
"lint": "jshint bin lib",
"test": "node test/index.js",
"test:4": "node test/index.js --protocol=4.1",
"test:5": "node test/index.js --protocol=5.0"
}
}