mirror of
https://github.com/jupyter/notebook.git
synced 2024-11-27 03:20:27 +08:00
17c1792c8f
* Remove release-npm script * Remove the npm publish check on CI
85 lines
2.7 KiB
JSON
85 lines
2.7 KiB
JSON
{
|
|
"name": "@retrolab/root",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"homepage": "https://github.com/jupyterlab/retrolab",
|
|
"bugs": {
|
|
"url": "https://github.com/jupyterlab/retrolab/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/jupyterlab/retrolab"
|
|
},
|
|
"license": "BSD-3-Clause",
|
|
"author": "Project Jupyter",
|
|
"workspaces": {
|
|
"packages": [
|
|
"app",
|
|
"buildutils",
|
|
"packages/*"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"build": "lerna run build",
|
|
"build:prod": "lerna run build:prod",
|
|
"build:test": "lerna run build:test",
|
|
"clean": "lerna run clean",
|
|
"eslint": "eslint . --ext .ts,.tsx --fix",
|
|
"eslint:check": "eslint . --ext .ts,.tsx",
|
|
"install": "lerna bootstrap",
|
|
"integrity": "node buildutils/lib/ensure-repo.js",
|
|
"prettier": "prettier --write \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
|
|
"prettier:check": "prettier --list-different \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
|
|
"publish": "yarn run clean && yarn run build && lerna publish",
|
|
"release:bump": "node ./buildutils/lib/release-bump.js",
|
|
"release:patch": "node ./buildutils/lib/release-patch.js",
|
|
"start": "jupyter retro --config ./app/test/jupyter_server_config.py --no-browser",
|
|
"test": "lerna run test",
|
|
"test:ci": "(jlpm run start&) && jlpm run test:e2e",
|
|
"test:e2e": "lerna run test:e2e --stream",
|
|
"update:dependency": "node ./node_modules/@jupyterlab/buildutils/lib/update-dependency.js --lerna",
|
|
"watch": "run-p watch:lib watch:app",
|
|
"watch:app": "lerna exec --stream --scope \"@retrolab/app\" jlpm watch",
|
|
"watch:lib": "lerna exec --stream --scope @retrolab/metapackage jlpm watch"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@jupyterlab/buildutils": "^3.1.9",
|
|
"@typescript-eslint/eslint-plugin": "^4.2.0",
|
|
"@typescript-eslint/parser": "^4.2.0",
|
|
"eslint": "^7.10.0",
|
|
"eslint-config-prettier": "^6.15.0",
|
|
"eslint-plugin-jest": "^24.1.3",
|
|
"eslint-plugin-prettier": "^3.1.4",
|
|
"eslint-plugin-react": "^7.21.5",
|
|
"extra-watch-webpack-plugin": "^1.0.3",
|
|
"husky": "^3",
|
|
"jest": "^26.4.2",
|
|
"jest-junit": "^11.1.0",
|
|
"jest-raw-loader": "^1.0.1",
|
|
"jest-summary-reporter": "^0.0.2",
|
|
"lerna": "^3.22.1",
|
|
"lint-staged": "^10.4.0",
|
|
"npm-run-all": "^4.1.5",
|
|
"prettier": "^1.19.0",
|
|
"rimraf": "^3.0.2",
|
|
"shell-quote": "^1.7.2",
|
|
"typescript": "~4.1.3"
|
|
},
|
|
"jupyter-releaser": {
|
|
"hooks": {
|
|
"before-bump-version": "python -m pip install bump2version"
|
|
},
|
|
"options": {
|
|
"version-cmd": [
|
|
"jlpm run release:bump --force --skip-commit"
|
|
]
|
|
},
|
|
"skip": ["check-links"]
|
|
}
|
|
}
|