This repository has been archived by the owner on Dec 2, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
76 lines (76 loc) · 2.08 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
{
"name": "jupyterlab-debugger",
"version": "0.1.0",
"description": "Debugger component for JupyterLab",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/QuantStack/jupyterlab-debugger",
"bugs": {
"url": "https://github.com/QuantStack/jupyterlab-debugger/issues"
},
"license": "BSD-3-Clause",
"author": "QuantStack",
"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/QuantStack/jupyterlab-debugger.git"
},
"scripts": {
"build": "tsc",
"clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
"prepare": "npm run clean && npm run build",
"prettier": "prettier --write '**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}'",
"watch": "tsc -w"
},
"lint-staged": {
"**/*{.ts,.tsx,.css,.json,.md}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@jupyterlab/application": "^1.1.0-alpha.1",
"@jupyterlab/apputils": "^1.1.0-alpha.1",
"@jupyterlab/cells": "^1.1.0-alpha.1",
"@jupyterlab/codeeditor": "^1.1.0-alpha.1",
"@jupyterlab/codemirror": "^1.1.0-alpha.1",
"@jupyterlab/notebook": "^1.1.0-alpha.1",
"@jupyterlab/services": "^4.1.0-alpha.1",
"@phosphor/widgets": "^1.6.0",
"@phosphor/disposable": "^1.2.0",
"codemirror": "~5.47.0",
"react": "~16.8.4",
"react-dom": "~16.8.4",
"vscode-debugprotocol": "^1.35.0"
},
"devDependencies": {
"@types/codemirror": "^0.0.76",
"@types/react": "~16.8.13",
"@types/react-dom": "~16.0.5",
"husky": "^3.0.0",
"lint-staged": "^8.1.5",
"prettier": "^1.18.2",
"rimraf": "^2.6.1",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"tslint-react": "^4.0.0",
"typescript": "~3.5.1"
},
"jupyterlab": {
"extension": true
}
}