-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.6 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.6 KB
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
{
"name": "jupyterlab-tutorial",
"version": "1.0.6",
"description": "A package which provides a tutorial manager for incorporating interactive tutorials within JupyterLab.",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/cdat/jupyterlab-tutorial.git",
"bugs": {
"url": "https://github.com/cdat/jupyterlab-tutorial.git/issues"
},
"license": "BSD-3-Clause",
"author": "Carlos Downie",
"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/CDAT/jupyterlab-tutorial.git"
},
"scripts": {
"build": "tsc",
"clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
"prepare": "npm run clean && npm run build",
"watch": "tsc -w"
},
"dependencies": {
"@jupyterlab/application": "^2.2.5",
"@jupyterlab/mainmenu": "^2.2.3",
"@types/react": "~16.9.0",
"@types/react-dom": "~16.9.0",
"@types/react-joyride": "^2.0.5",
"prop-types": "^15.7.2",
"react": "~16.9.0",
"react-dom": "~16.9.0",
"react-joyride": "^2.2.1"
},
"devDependencies": {
"bufferutil": "^4.0.1",
"prettier": "^2.1.2",
"prettier-tslint": "^0.4.2",
"rimraf": "^3.0.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^5.0.0",
"typescript": "^3.8.3",
"utf-8-validate": "^5.0.2"
},
"sideEffects": [
"style/*.css"
]
}