-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.08 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.08 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
{
"name": "learn-js-in-jupyter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clearCellOutput": "./utils/clearCellOutput.js",
"prettier:code-cell": "./utils/prettierCodeCell.js",
"prettier:settings": "prettier --parser=json --write jupyterlab-settings/**/*.jupyterlab-settings",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/liuderchi/learn-js-in-jupyter.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/liuderchi/learn-js-in-jupyter/issues"
},
"homepage": "https://github.com/liuderchi/learn-js-in-jupyter#readme",
"lint-staged": {
"*.ipynb": [
"npm run clearCellOutput",
"npm run prettier:code-cell",
"git add"
],
"*.jupyterlab-settings": [
"prettier --parser=json --write",
"git add"
]
},
"devDependencies": {
"glob": "^7.1.3",
"husky": "^1.3.1",
"lint-staged": "^8.1.3",
"prettier": "^1.16.4"
}
}