-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.43 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
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "presentation-cell",
"version": "0.1.0",
"description": "A simple theme, based on JupyterLab light, to show only the current cell.",
"author": "Jim Pivarski <jpivarski@gmail.com>",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"jupyterlab-theme"
],
"license": "BSD-3-Clause",
"files": [
"lib/*.d.ts",
"lib/*.js.map",
"lib/*.js",
"style/*"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib/"
},
"scripts": {
"build": "tsc -b",
"build:webpack": "webpack",
"clean": "rimraf lib && rimraf static",
"prepare": "npm run clean && npm run build",
"watch": "tsc -w",
"watch:webpack": "webpack --watch"
},
"dependencies": {
"@jupyterlab/application": "^1.0.0-alpha.3",
"@jupyterlab/apputils": "^1.0.0-alpha.3"
},
"devDependencies": {
"rimraf": "~2.6.2",
"typedoc": "~0.12.0",
"typescript": "~3.3.1",
"css-loader": "~0.28.7",
"mini-css-extract-plugin": "~0.4.4",
"svgo": "~1.0.4",
"svg-url-loader": "~2.3.1",
"svgo-loader": "~2.1.0",
"url-loader": "~1.0.1",
"watch": "~1.0.2",
"webpack": "~4.12.0",
"webpack-cli": "^3.0.3"
},
"publishConfig": {
"access": "public"
},
"jupyterlab": {
"extension": true,
"themePath": "style/index.css"
},
"homepage": "",
"bugs": {
"url": ""
},
"repository": {
"type": "git",
"url": ""
}
}