-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 955 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
{
"name": "iclio",
"version": "1.0.4",
"description": "iClio is a Clio kernel for the Jupyter notebook",
"keywords": [
"clio",
"kernel",
"jupyter"
],
"license": "Apache-2.0",
"author": {
"author": "Pouya Eghbali"
},
"bin": {
"iclio": "bin/iclio.js",
"iclio-console": "bin/iclio-console.js",
"iclio-install": "bin/iclio-install.js",
"iclio-notebook": "bin/iclio-notebook.js",
"iclio-kernel": "lib/kernel.js"
},
"dependencies": {
"jp-kernel": "1"
},
"devDependencies": {
"debug": "2",
"eslint": "2",
"jmp": "1",
"jsdoc": "3",
"mocha": "3",
"uuid": "3"
},
"scripts": {
"doc": "jsdoc -R README.md -d docs bin lib",
"lint": "eslint bin lib test",
"test:mocha": "mocha lib/**/*.spec.js",
"test": "npm run lint && npm run test:mocha"
}
}