forked from n-riesco/ijavascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.48 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
{
"name": "ijavascript",
"version": "5.2.1",
"description": "IJavascript is a Javascript kernel for the Jupyter 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": {
"name": "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",
"ijsconsole": "bin/ijsconsole.js",
"ijsinstall": "bin/ijsinstall.js",
"ijskernel": "lib/kernel.js",
"ijsnotebook": "bin/ijsnotebook.js"
},
"dependencies": {
"jp-kernel": "1 || 2"
},
"devDependencies": {
"debug": "2",
"eslint": "2",
"jmp": "1 || 2",
"jsdoc": "3",
"mocha": "3",
"uuid": "3"
},
"engineStrict": true,
"scripts": {
"doc": "python scripts/doc-build.py",
"doc:publish": "node scripts/doc-publish.js gh-pages https://github.com/n-riesco/ijavascript",
"lint": "eslint bin lib test",
"test": "npm run lint && npm run test:ijskernel",
"test:docker": "make -C docker test",
"test:ijskernel": "mocha test/ijskernel.js"
}
}