forked from jupyterlab/jupyterlab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 761 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 761 Bytes
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
{
"name": "@jupyterlab/test-codemirror",
"version": "0.5.1",
"private": true,
"scripts": {
"build": "tsc -b",
"clean": "rimraf build && rimraf coverage",
"coverage": "python run.py --coverage",
"test": "python run.py",
"watch": "python run.py --debug",
"watch:all": "python run.py --debug --watchAll",
"watch:src": "tsc -b --watch"
},
"dependencies": {
"@jupyterlab/codeeditor": "^0.19.1",
"@jupyterlab/codemirror": "^0.19.1",
"@jupyterlab/testutils": "^0.3.1",
"chai": "~4.1.2",
"jest": "^23.5.0",
"simulate-event": "~1.4.0",
"ts-jest": "^23.1.4"
},
"devDependencies": {
"@types/chai": "~4.0.10",
"@types/jest": "^23.3.1",
"rimraf": "~2.6.2",
"typescript": "~3.1.1"
}
}