зеркало из https://github.com/microsoft/backfill.git
73 строки
1.9 KiB
JSON
73 строки
1.9 KiB
JSON
{
|
|
"private": true,
|
|
"name": "@microsoft/backfill-repo",
|
|
"version": "2.0.0",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/microsoft/backfill"
|
|
},
|
|
"scripts": {
|
|
"build": "lerna run --stream build",
|
|
"change": "beachball change",
|
|
"checkchange": "beachball check",
|
|
"format": "prettier --write .",
|
|
"format:check": "prettier --check .",
|
|
"postinstall": "yarn update-project-references",
|
|
"lerna": "lerna",
|
|
"lint": "eslint --fix . --ext .ts",
|
|
"prepare": "husky install",
|
|
"prepublishOnly": "eslint . --ext .ts && lerna run build && lerna run test",
|
|
"release": "beachball publish",
|
|
"syncpack:check": "syncpack list-mismatches",
|
|
"syncpack:fix": "syncpack fix-mismatches",
|
|
"test": "lerna run test",
|
|
"update-project-references": "node tools/update-project-references.js",
|
|
"watch": "lerna run watch --parallel"
|
|
},
|
|
"workspaces": [
|
|
"packages/*"
|
|
],
|
|
"resolutions": {
|
|
"**/cache-base/union-value/set-value": "^2.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^5.52.0",
|
|
"@typescript-eslint/parser": "^5.52.0",
|
|
"beachball": "^2.31.8",
|
|
"eslint": "^8.34.0",
|
|
"eslint-config-prettier": "^8.6.0",
|
|
"eslint-plugin-import": "^2.27.5",
|
|
"execa": "^5.0.0",
|
|
"husky": "^7.0.4",
|
|
"lerna": "^7.0.0",
|
|
"lint-staged": "^12.5.0",
|
|
"lodash.merge": "^4.6.2",
|
|
"prettier": "~3.0.0",
|
|
"prettier-package-json": "^2.8.0",
|
|
"resolve-from": "^5.0.0",
|
|
"syncpack": "8.4.11",
|
|
"typescript": "~4.3.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=14"
|
|
},
|
|
"lint-staged": {
|
|
"**/package.json": [
|
|
"prettier-package-json --write",
|
|
"prettier --write"
|
|
],
|
|
"**/*.{js,json,md,yaml}": [
|
|
"prettier --write"
|
|
],
|
|
"**/*.ts": [
|
|
"eslint --fix",
|
|
"prettier --write"
|
|
]
|
|
},
|
|
"syncpack": {
|
|
"peer": false,
|
|
"workspace": false
|
|
}
|
|
}
|