-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
66 lines (66 loc) · 1.88 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
{
"name": "@krassowski/jupyterlab_go_to_definition",
"version": "0.7.1",
"description": "Jump to definition of a variable or function in JupyterLab",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/krassowski/jupyterlab-go-to-definition",
"bugs": {
"url": "https://github.com/krassowski/jupyterlab-go-to-definition/issues"
},
"license": "BSD-3-Clause",
"author": "Michał Krassowski",
"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"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/krassowski/jupyterlab-go-to-definition.git"
},
"scripts": {
"build": "tsc",
"clean": "rimraf lib",
"prepare": "npm run clean && npm run build",
"watch": "tsc -w",
"test": "npx jest"
},
"dependencies": {
"@jupyterlab/application": "^1.0.0",
"@jupyterlab/apputils": "^1.0.0",
"@jupyterlab/codeeditor": "^1.0.0",
"@jupyterlab/codemirror": "^1.0.0",
"@jupyterlab/coreutils": "^3.0.0",
"@jupyterlab/docmanager": "^1.0.0",
"@jupyterlab/docregistry": "^1.0.0",
"@jupyterlab/fileeditor": "^1.0.0",
"@jupyterlab/notebook": "^1.0.0",
"@jupyterlab/observables": "^2.2.0",
"@jupyterlab/services": "^4.0.0",
"@phosphor/algorithm": "^1.1.2",
"codemirror": "^5.47.0",
"react": "^16.8.4"
},
"devDependencies": {
"@jupyterlab/testutils": "^1.0.0-alpha.6",
"@types/codemirror": "^0.0.74",
"@types/chai": "^4.1.7",
"@types/jest": "^23.3.11",
"chai": "^4.2.0",
"jest": "^24.7.1",
"rimraf": "^2.6.1",
"ts-jest": "^24.0.2",
"typescript": "~3.4.5",
"@babel/preset-env": "^7.4.3"
},
"jupyterlab": {
"extension": true,
"schemaDir": "schema"
}
}