-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.14 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.14 KB
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
{
"name": "juniper-js",
"displayname": "juniper",
"version": "0.1.0",
"description": "Edit and execute code snippets in the browser using Jupyter kernels",
"main": "dist/juniper.min.js",
"scripts": {
"build": "NODE_ENV=production webpack --display-chunks && rm -rf dist/*.juniper.min.js",
"watch": "webpack --progress --colors --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"dist/juniper.min.js",
"src/*"
],
"author": "Ines Montani",
"license": "MIT",
"homepage": "https://github.com/ines/juniper#readme",
"repository": {
"type": "git",
"url": "https://github.com/ines/juniper.git"
},
"keywords": [
"jupyter",
"notebook",
"python",
"ipython",
"binder",
"browser"
],
"devDependencies": {
"@jupyterlab/outputarea": "^0.19.1",
"@jupyterlab/services": "^2.0.3",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"codemirror": "^5.35.0",
"css-loader": "^0.28.11",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.0.1",
"webpack": "^4.6.0",
"webpack-cli": "^2.1.0"
}
}