-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
52 lines (52 loc) · 1.46 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": "jp-coffeescript",
"version": "2.1.0",
"description": "jp-CoffeeScript is a CoffeeScript kernel for the Jupyter notebook",
"keywords": [
"coffeescript",
"kernel",
"jupyter"
],
"homepage": "https://github.com/n-riesco/jp-coffeescript",
"bugs": {
"url": "https://github.com/n-riesco/jp-coffeescript/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/jp-coffeescript.git"
},
"bin": {
"jp-coffee": "bin/jp-coffeescript.js",
"jp-coffee-console": "bin/jp-coffeescript-console.js",
"jp-coffee-install": "bin/jp-coffeescript-install.js",
"jp-coffee-notebook": "bin/jp-coffeescript-notebook.js",
"jp-coffee-kernel": "lib/kernel.js"
},
"dependencies": {
"coffeescript": "2",
"jp-kernel": "2"
},
"devDependencies": {
"debug": "2",
"eslint": "2",
"jmp": "2",
"jsdoc": "3",
"mocha": "3",
"uuid": "3"
},
"engines": {
"node": ">=6"
},
"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"
}
}