-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
62 lines (62 loc) · 1.47 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
{
"name": "@ibqn/jupyterlab-codecellbtn",
"version": "0.1.3",
"description": "Extension for adding 'run' buttons to each code cell",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"license": "BSD-3-Clause",
"author": "Evgeny Bobkin",
"repository": {
"type": "git",
"url": "https://github.com/ibqn/jupyterlab-codecellbtn.git"
},
"main": "lib/index.js",
"style": "style/index.css",
"scripts": {
"build": "tsc",
"lint": "tslint --project tsconfig.json",
"clean": "rimraf lib",
"prepare": "npm run clean && npm run build",
"watch": "tsc -w"
},
"devDependencies": {
"@types/react": "^16.9.21",
"@types/react-dom": "^16.9.5",
"husky": "^4.2.3",
"lint-staged": "^10.0.7",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"tslint": "^6.0.0",
"typescript": "^3.7.4"
},
"dependencies": {
"@jupyterlab/application": "^2.0.0-rc.1",
"@jupyterlab/apputils": "^2.0.0-rc.1",
"@jupyterlab/cells": "^2.0.0-rc.1",
"@jupyterlab/notebook": "^2.0.0-rc.1",
"@lumino/coreutils": "^1.4.2",
"@lumino/commands": "^1.10.1",
"@types/node": "^12.7.11",
"react": "^16.9.0",
"react-dom": "^16.9.0"
},
"jupyterlab": {
"extension": true
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --single-quote --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"prettier": {
"singleQuote": true
}
}