forked from GoogleCloudPlatform/jupyter-extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.43 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
{
"private": true,
"name": "jupyter-extensions",
"version": "1.0.0",
"description": "Synthetic parent project for Google-developed Jupyter(Lab) extensions",
"scripts": {
"bootstrap": "lerna bootstrap --hoist",
"build": "lerna run build --stream --sort",
"devserver": "nodemon -e \".py\" -x \"jupyter lab --watch --no-browser --LabApp.token='' --LabApp.password=''\"",
"clean": "lerna clean --yes && lerna run clean --parallel",
"link": "lerna run link --stream",
"pack": "lerna exec npm pack",
"lint": "lerna run lint --parallel",
"test": "lerna run test",
"watch": "lerna run watch --parallel"
},
"repository": {
"type": "git",
"url": "https://github.com/GoogleCloudPlatform/jupyter-extensions.git"
},
"author": "Google",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/GoogleCloudPlatform/jupyter-extensions/issues"
},
"homepage": "https://github.com/GoogleCloudPlatform/jupyter-extensions#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.5",
"lerna": "^3.22.0",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run lint && npm test"
}
}
}