-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
58 lines (58 loc) · 1.63 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
{
"name": "jupyterlab-pkginstaller",
"version": "0.1.0",
"description": "A JupyterLab UI extension that installs PyPI packages into the active kernel's environment.",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/jupytercalpoly/jupyterlab-pkginstaller",
"bugs": {
"url": "https://github.com/jupytercalpoly/jupyterlab-pkginstaller/issues"
},
"license": "BSD-3-Clause",
"author": "Marisa Aquilina",
"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}",
"static/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"style": "style/index.css",
"repository": {
"type": "git",
"url": "https://github.com/jupytercalpoly/jupyterlab-pkginstaller.git"
},
"scripts": {
"build": "tsc",
"clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
"prepare": "npm run clean && npm run build",
"watch": "tsc -w"
},
"dependencies": {
"@jupyterlab/application": "^1.0.2",
"@jupyterlab/notebook": "^1.0.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-inspector": "^3.0.2",
"react-select": "^3.0.4",
"react-selector": "0.0.5"
},
"devDependencies": {
"@types/node": "^12.7.1",
"rimraf": "^2.6.1",
"typescript": "~3.5.2",
"@jupyterlab/docregistry": "^1.0.2",
"@jupyterlab/services": "^4.0.5",
"@phosphor/commands": "^1.6.2",
"@phosphor/messaging": "^1.2.3"
},
"sideEffects": [
"style/*.css"
],
"jupyterlab": {
"extension": true
}
}