forked from mkery/Verdant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.72 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
{
"name": "Verdant",
"version": "0.1.0",
"description": "a local versioning extool",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "hhttps://github.com/mkery/Verdant",
"bugs": {
"url": "hhttps://github.com/mkery/Verdant/issues"
},
"license": "BSD-3-Clause",
"author": "mkery",
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png, py,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": "hhttps://github.com/mkery/Verdant.git"
},
"scripts": {
"build": "tsc",
"clean": "rimraf lib",
"watch": "tsc -w"
},
"dependencies": {
"@jupyterlab/application": "^0.19.1",
"@jupyterlab/apputils": "^0.19.1",
"@jupyterlab/cells": "^0.19.1",
"@jupyterlab/codemirror": "^0.19.1",
"@jupyterlab/coreutils": "^2.2.1",
"@jupyterlab/docmanager": "^0.19.1",
"@jupyterlab/docregistry": "^0.19.1",
"@jupyterlab/notebook": "^0.19.1",
"@jupyterlab/observables": "^2.1.1",
"@jupyterlab/outputarea": "^0.19.1",
"@jupyterlab/rendermime": "^0.19.1",
"@jupyterlab/services": "^3.2.1",
"@phosphor/coreutils": "^1.3.0",
"@phosphor/messaging": "^1.2.2",
"@phosphor/signaling": "^1.2.2",
"@phosphor/widgets": "^1.6.0",
"@types/diff": "^3.5.1",
"@types/text-encoding": "^0.0.33",
"diff": "^3.5.0",
"fast-levenshtein": "2.0.6"
},
"devDependencies": {
"@types/codemirror": "~0.0.46",
"@types/fast-levenshtein": "0.0.1",
"@types/node": "~8.0.47",
"jest": "^23.6.0",
"rimraf": "~2.6.2",
"typescript": "~2.9.1"
},
"jupyterlab": {
"extension": true
}
}