-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
40 lines (40 loc) · 1.01 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
{
"name": "jupyter-devinstall",
"version": "0.3.2",
"description": "Utility for setting up a Jupyter developer environment.",
"main": "src/index.js",
"repository": "https://github.com/jovyan/jupyter-devinstall",
"bin": {
"jupyter-devinstall": "./lib/index.js"
},
"scripts": {
"build": "npm run clean && babel src -d lib -m commonStrict",
"clean": "rimraf lib && mkdirp lib",
"prepublish": "npm run build",
"test": "echo \"Tests are awesome, yet none exist for this tool\"",
"watch": "nodemon -q -w src/ --exec 'npm run build'"
},
"keywords": [
"jupyter",
"dev",
"devinstall",
"tool",
"install"
],
"author": "Jonathan Frederic",
"license": "BSD-3-Clause",
"dependencies": {
"chalk": "^1.1.1",
"commander": "^2.9.0",
"expand-tilde": "^1.2.0",
"mkdirp": "^0.5.1",
"prompt": "^0.2.14",
"request": "^2.61.0",
"underscore": "^1.8.3"
},
"devDependencies": {
"babel": "^5.8.23",
"nodemon": "^1.4.1",
"rimraf": "^2.4.3"
}
}