-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
28 lines (28 loc) · 939 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
{
"name": "@opendesign/octopus-specs",
"version": "3.6.0",
"private": true,
"workspaces": [
"packages/octopus-oas",
"packages/octopus-ts",
"packages/manifest-oas",
"packages/manifest-ts",
"packages/specs-renderer"
],
"files": [],
"scripts": {
"-- BUILD --": "",
"build": "yarn workspaces run build",
"test": "yarn workspaces run test --arg1 arg2 'arg3'",
"-- VERSION --": "",
"preversion": "yarn build",
"postversion": "yarn workspaces run version:bump $npm_package_version",
"version:bump": "./scripts/bump-versions.sh --version",
"version:bump:major": "./scripts/bump-versions.sh --major",
"version:bump:minor": "./scripts/bump-versions.sh --minor",
"version:bump:patch": "./scripts/bump-versions.sh --patch",
"version:bump:alpha": "./scripts/bump-versions.sh --alpha",
"--PUBLISH --": "",
"release": "yarn build && yarn workspaces run release"
}
}