This repository has been archived by the owner on Apr 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
52 lines (52 loc) · 1.45 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
{
"name": "@enlznep/jupyterlab_shell_file",
"version": "0.1.0",
"description": "JupyterLab extension for creating and running shell script",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/enlznep/jupyterlab-shell-file",
"bugs": {
"url": "https://github.com/enlznep/jupyterlab-shell-file/issues"
},
"license": "BSD-3-Clause",
"author": "Ray Marc Marcellones",
"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/enlznep/jupyterlab-shell-file.git"
},
"scripts": {
"build": "tsc",
"clean": "rimraf lib",
"prepare": "npm run clean && npm run build",
"watch": "tsc -w"
},
"dependencies": {
"@jupyterlab/application": "^0.19.1",
"@jupyterlab/apputils": "^0.19.1",
"@jupyterlab/codeeditor": "^0.19.1",
"@jupyterlab/docregistry": "^0.19.1",
"@jupyterlab/filebrowser": "^0.19.3",
"@jupyterlab/fileeditor": "^0.19.1",
"@jupyterlab/launcher": "^0.19.1",
"@jupyterlab/mainmenu": "^0.8.1",
"@jupyterlab/notebook": "^0.19.2",
"@phosphor/algorithm": "^1.1.2",
"@phosphor/disposable": "^1.1.2"
},
"devDependencies": {
"rimraf": "^2.6.1",
"typescript": "~3.1.1"
},
"jupyterlab": {
"extension": true
}
}