backfill/package.json

84 строки
2.0 KiB
JSON
Исходник Обычный вид История

2019-08-30 12:23:37 +03:00
{
"private": true,
"name": "backfill-repo",
"version": "2.0.0",
2019-08-30 12:23:37 +03:00
"license": "MIT",
2022-09-08 06:07:24 +03:00
"repository": {
"type": "git",
"url": "https://github.com/microsoft/backfill"
},
2019-08-30 12:23:37 +03:00
"scripts": {
"build": "lerna run --stream build",
2022-09-08 06:07:24 +03:00
"change": "beachball change",
"checkchange": "beachball check",
2022-09-16 02:57:35 +03:00
"format": "prettier --write .",
"postinstall": "yarn update-project-references",
2019-08-30 12:23:37 +03:00
"lerna": "lerna",
"lint": "eslint --fix . --ext .ts",
2022-09-16 02:34:19 +03:00
"prepare": "husky install",
"prepublishOnly": "eslint . --ext .ts && lerna run build && lerna run test",
"release": "beachball publish",
2022-09-16 03:35:35 +03:00
"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"
2019-08-30 12:23:37 +03:00
},
"workspaces": [
"packages/*"
],
"resolutions": {
"**/cache-base/union-value/set-value": "^2.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.45.1",
"@typescript-eslint/parser": "5.45.1",
"beachball": "2.31.5",
"eslint": "8.29.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.2.1",
"execa": "4.1.0",
2022-09-16 02:34:19 +03:00
"husky": "7.0.4",
"lerna": "3.22.1",
2022-09-16 02:34:19 +03:00
"lint-staged": "12.5.0",
"lodash.merge": "4.6.2",
"prettier": "2.8.1",
"prettier-package-json": "2.7.0",
"resolve-from": "5.0.0",
"syncpack": "8.2.4",
"typescript": "4.1.2"
},
2022-09-08 06:07:24 +03:00
"beachball": {
"scope": [
"!packages/utils-test/__fixtures__/*"
]
},
"lint-staged": {
2022-09-16 02:34:19 +03:00
"**/package.json": [
"prettier-package-json --write",
2022-09-16 02:34:19 +03:00
"prettier --write"
],
"**/*.{js,json,md,yaml}": [
2022-09-16 02:34:19 +03:00
"prettier --write"
],
2022-09-16 02:34:19 +03:00
"**/*.ts": [
"eslint --fix"
]
2020-02-06 18:05:18 +03:00
},
2022-09-16 03:35:35 +03:00
"syncpack": {
"peer": false,
"workspace": false,
"versionGroups": [
{
"dependencies": [
"execa"
],
"packages": [
"backfill-repo"
]
}
]
2019-08-30 12:23:37 +03:00
}
}