-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
47 lines (47 loc) · 1.16 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
{
"name": "jp-kernel",
"version": "2.0.0",
"description": "Generic Node.js kernel for the Jupyter notebook",
"keywords": [
"kernel",
"ipython",
"jupyter",
"ijavascript",
"jp-babel",
"jp-coffeescript"
],
"homepage": "https://n-riesco.github.io/jp-kernel",
"bugs": {
"url": "https://github.com/n-riesco/jp-kernel/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/jp-kernel.git"
},
"dependencies": {
"jmp": "1 || 2",
"nel": "^1.1.0",
"uuid": "3"
},
"devDependencies": {
"debug": "2",
"eslint": "2",
"jsdoc": "3",
"mocha": "3"
},
"engines": {
"node": ">=6"
},
"scripts": {
"doc": "jsdoc -R README.md -d docs index.js lib",
"lint": "eslint index.js lib test",
"test:mocha": "mocha",
"test": "npm run lint && npm run test:mocha -- --bail"
}
}