forked from jupyter-widgets/ipywidgets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.99 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
{
"private": true,
"workspaces": [
"packages/*",
"python/widgetsnbextension",
"examples/*",
"python/jupyterlab_widgets"
],
"scripts": {
"build": "lerna run build --ignore \"@jupyter-widgets/example-*\"",
"build:examples": "lerna run build --scope \"@jupyter-widgets/example-*\" --include-filtered-dependencies",
"build:test": "lerna run build:test --ignore \"@jupyter-widgets/example-*\"",
"clean": "lerna run clean",
"eslint": "eslint . --fix --ignore-path .gitignore --ext .ts,.tsx",
"eslint:check": "eslint . --ignore-path .gitignore --ext .ts,.tsx",
"integrity": "node scripts/package-integrity.js",
"integrity2": "node buildutils/lib/integrity.js",
"lint": "yarn && yarn run prettier && yarn run eslint",
"lint:check": "yarn run prettier:check && yarn run eslint:check",
"prettier": "prettier --ignore-path .gitignore --write \"**/*{.ts,.tsx,.js,.jsx,.css,.json}\"",
"prettier:check": "prettier --ignore-path .gitignore --check \"**/*{.ts,.tsx,.js,.jsx,.css,.json}\"",
"publish": "yarn run clean && yarn run build && lerna publish --pre-dist-tag next from-git",
"sort-package-json": "lerna exec --parallel sort-package-json && sort-package-json",
"update-dependency": "update-dependency --lerna",
"updated": "lerna updated",
"version": "yarn run clean && yarn run build && lerna version --no-push -m \"Bump version\" "
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn run integrity"
}
},
"devDependencies": {
"@jupyterlab/buildutils": "^3.2.5",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lerna": "^4.0.0",
"lint-staged": "^12.1.3",
"prettier": "^2.3.2",
"sort-package-json": "~1.53.1"
},
"engines": {
"node": ">=10.15.3",
"npm": "please-use-yarn",
"yarn": ">=1.15.0"
}
}