forked from vatlab/jupyterlab-sos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.79 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "jupyterlab-sos",
"version": "0.8.1",
"description": "JupyterLab extension for SoS workflow engine and polyglot notebook",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/vatlab/jupyterlab-sos",
"bugs": {
"url": "https://github.com/vatlab/jupyterlab-sos/issues"
},
"license": "BSD-3-Clause",
"author": "Bo Peng",
"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}",
"schema/*.json",
"style/index.js"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/vatlab/jupyterlab-sos.git"
},
"scripts": {
"build": "jlpm run build:lib && jlpm run build:labextension:dev",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"build:lib": "tsc",
"build:prod": "jlpm run build:lib && jlpm run build:labextension",
"clean": "jlpm run clean:lib",
"clean:all": "jlpm run clean:lib && jlpm run clean:labextension",
"clean:labextension": "rimraf jupyterlab-sos/labextension",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"eslint": "eslint . --ext .ts,.tsx --fix",
"eslint:check": "eslint . --ext .ts,.tsx",
"install:extension": "jupyter labextension develop --overwrite .",
"prepare": "jlpm run clean && jlpm run build:prod",
"prepublishOnly": "npm run build",
"watch": "run-p watch:src watch:labextension",
"watch:labextension": "jupyter labextension watch .",
"watch:src": "tsc -w"
},
"dependencies": {
"@jupyterlab/application": "^3.1.12",
"@jupyterlab/apputils": "^3.1.12",
"@jupyterlab/codemirror": "^3.1.12",
"@jupyterlab/console": "^3.1.12",
"@jupyterlab/docregistry": "^3.1.12",
"@jupyterlab/settingregistry": "^3.1.12",
"@jupyterlab/notebook": "^3.1.12",
"@jupyterlab/coreutils": "^5.1.0",
"@jupyterlab/services": "^6.1.12",
"@lumino/algorithm": "^1.3.3",
"@lumino/commands": "^1.12.0",
"@lumino/disposable": "^1.4.3",
"transient-display-data": "^0.4.0"
},
"devDependencies": {
"@jupyterlab/builder": "^3.0.0-rc.13",
"@types/codemirror": "0.0.97",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"codemirror": "^5.53.2",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.1",
"eslint-plugin-prettier": "^3.1.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"typedoc": "^0.15.4",
"typescript": "~4.1.3"
},
"jupyterlab": {
"extension": true,
"schemaDir": "schema",
"outputDir": "jupyterlab-sos/labextension"
},
"styleModule": "style/index.js"
}