forked from finos/jupyterlab_templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.77 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
{
"name": "jupyterlab_templates",
"version": "0.2.2",
"description": "A JupyterLab extension.",
"author": "Tim Paine",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/timkpaine/jupyterlab_templates.git"
},
"license": "Apache-2.0",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"scripts": {
"build": "tsc",
"build:lab": "rimraf lab-dist && mkdirp lab-dist && cd lab-dist && npm pack ..",
"build:all": "npm run build && npm run build:lab",
"clean": "rimraf lib",
"lint": "./node_modules/.bin/tslint './src/*.ts'",
"prepublishOnly": "npm run build",
"test": "jest --coverage --collectCoverageFrom=src/*.{ts}"
},
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
"style/**/*.css"
],
"jupyterlab": {
"extension": true,
"discovery": {
"server": {
"base": {
"name": "jupyterlab_templates"
},
"managers": [
"pip"
]
}
}
},
"dependencies": {
"@jupyterlab/application": "^2.0.0",
"@jupyterlab/apputils": "^2.0.0",
"@jupyterlab/coreutils": "^4.0.0",
"@jupyterlab/docmanager": "^2.0.0",
"@jupyterlab/filebrowser": "^2.0.0",
"@jupyterlab/launcher": "^2.0.0",
"@jupyterlab/mainmenu": "^2.0.0",
"@jupyterlab/notebook": "^2.0.0",
"@lumino/disposable": "^1.1.2",
"requests-helper": "^0.1.5"
},
"devDependencies": {
"@babel/preset-env": "^7.5.5",
"@types/jest": "^24.0.4",
"babel-jest": "^24.8.0",
"isomorphic-fetch": "^2.2.1",
"jest": "^24.1.0",
"jest-transform-css": "^2.0.0",
"mkdirp": "^0.5.1",
"rimraf": "^2.6.1",
"ts-jest": "^23.10.4",
"tslint": "^5.14.0",
"typescript": "^3.1.6"
}
}