forked from QuantStack/jupyterlab-snippets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.96 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
{
"name": "jupyterlab-snippets",
"version": "0.3.2",
"description": "Snippets Extension for JupyterLab",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/QuantStack/jupyterlab-snippets",
"bugs": {
"url": "https://github.com/QuantStack/jupyterlab-snippets/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",
"style": "style/index.css",
"repository": {
"type": "git",
"url": "https://github.com/QuantStack/jupyterlab-snippets.git"
},
"scripts": {
"build": "jlpm run build:lib",
"build:labextension": "cd jupyterlab-snippets && rimraf labextension && mkdirp labextension && cd labextension && npm pack ../..",
"build:lib": "tsc",
"build:all": "jlpm run build:labextension",
"clean": "jlpm run clean:lib",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"clean:labextension": "rimraf jupyterlab-snippets/labextension",
"clean:all": "jlpm run clean:lib && jlpm run clean:labextension",
"prepare": "jlpm run clean && jlpm run build",
"watch": "tsc -w"
},
"dependencies": {
"@jupyterlab/application": "^2.0.2",
"@jupyterlab/apputils": "^2.0.2",
"@jupyterlab/coreutils": "^4.0.2",
"@jupyterlab/mainmenu": "^2.0.2",
"@jupyterlab/notebook": "^2.0.2",
"@jupyterlab/services": "^5.0.2",
"@lumino/commands": "^1.9.2",
"@lumino/widgets": "^1.10.0"
},
"devDependencies": {
"mkdirp": "^0.5.1",
"rimraf": "^3.0.0",
"typescript": "~3.7.2"
},
"sideEffects": [
"style/*.css"
],
"jupyterlab": {
"discovery": {
"server": {
"managers": [
"pip"
],
"base": {
"name": "jupyterlab-snippets"
}
}
},
"extension": true
}
}