forked from opticdev/optic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 813 Bytes
/
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
{
"name": "openapi-workspaces",
"license": "MIT",
"private": true,
"version": "0.42.9",
"workspaces": [
"projects/json-pointer-helpers",
"projects/openapi-io",
"projects/openapi-utilities",
"projects/rulesets-base",
"projects/optic",
"projects/optic-ci",
"projects/standard-rulesets"
],
"scripts": {
"release": "gh release create --target=$(git branch --show-current) v$(node -e \"process.stdout.write(require('./package.json').version)\")",
"version": "yarn workspaces foreach -v version",
"prepare": "husky install"
},
"devDependencies": {
"@types/prettier": "^2",
"husky": "^8.0.0",
"lint-staged": "^13.1.0",
"prettier": "^2.8.1"
},
"lint-staged": {
"**/*.+(js|jsx|ts|tsx|json|css)": [
"yarn prettier --write"
]
}
}