This repository has been archived by the owner on Aug 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
69 lines (69 loc) · 2.04 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
{
"name": "jupyterlab-autoplay",
"version": "1.0.1",
"description": "Automatically run and/or hide cells when opening a Jupyter notebook",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://borgniet.com/index.php/2020/10/02/how-to-run-all-the-cells-of-a-jupyter-lab-notebook-when-opening-it/",
"bugs": {
"url": "https://github.com/remborg/autoplay/issues"
},
"license": "BSD-3-Clause",
"author": "Remi Borgniet",
"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/remborg/autoplay"
},
"scripts": {
"build": "tsc",
"clean": "rimraf lib tsconfig.tsbuildinfo",
"eslint": "eslint . --ext .ts,.tsx --fix",
"eslint:check": "eslint . --ext .ts,.tsx",
"prepare": "jlpm run clean && jlpm run build",
"test": "jest",
"watch": "tsc -w"
},
"dependencies": {
"@jupyterlab/application": "^2.2.4",
"@jupyterlab/notebook": "^2.2.5",
"react-dom": "^16.9.0"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@jupyterlab/testutils": "^2.2.5",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.8",
"@types/react-dom": "^16.9.8",
"@types/react-test-renderer": "^16.9.3",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"babel-jest": "^24.9.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^24.9.0",
"prettier": "1.16.4",
"react-test-renderer": "^16.13.1",
"rimraf": "^2.6.1",
"ts-jest": "^24.1.0",
"typescript": "~3.6.3"
},
"sideEffects": [
"style/*.css"
],
"jupyterlab": {
"extension": true
}
}