-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.59 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
{
"name": "nb_data_ui",
"version": "0.1.0",
"description": "A JupyterLab extension.",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/sunyi000/nb_data_ui",
"bugs": {
"url": "https://github.com/sunyi000/nb_data_ui/issues"
},
"license": "BSD-3-Clause",
"author": "yi sun",
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
"style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/sunyi000/nb_data_ui.git"
},
"scripts": {
"build": "tsc",
"clean": "rimraf lib",
"watch": "tsc -w",
"prepare": "npm run clean && npm run build"
},
"dependencies": {
"@jupyterlab/application": "^0.18.0",
"@jupyterlab/apputils": "^0.18.3",
"@jupyterlab/docmanager": "^0.18.3",
"@jupyterlab/filebrowser": "^0.18.3",
"@jupyterlab/filebrowser-extension": "^0.18.4",
"@jupyterlab/mainmenu": "^0.7.3",
"@jupyterlab/services": "^3.1.3",
"@phosphor/widgets": "^1.6.0",
"dropbox": "^4.0.9"
},
"devDependencies": {
"@types/dropboxjs": "0.0.29",
"@types/node": "^10.9.2",
"@types/requirejs": "^2.1.31",
"fs": "0.0.1-security",
"json-loader": "^0.5.7",
"prompt": "^1.0.0",
"rimraf": "^2.6.1",
"ts-loader": "^4.5.0",
"ts-node": "^7.0.1",
"typescript": "~2.9.2",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.6"
},
"jupyterlab": {
"extension": true
}
}