-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 922 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 922 Bytes
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": "pagetour",
"description": "Typescript Based Sdk for Pagetour",
"private": true,
"repository": {
"type": "git"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"build:prod": "npm run build:prod",
"build:prod:aot": "npm run build:prod:aot",
"postinstall": "npm run bootstrap",
"test": "echo \"Error: no test specified\" && exit 0",
"watch": "lerna run --parallel watch",
"bump-version-patch": "lerna version patch --yes --no-push --no-commit-hooks",
"bump-version-minor": "lerna version minor --yes --exact --no-push --no-commit-hooks",
"bump-version-major": "lerna version major --yes --exact --no-push --no-commit-hooks",
"publish-ci": "lerna publish from-package --contents dist --yes --ignore-scripts"
},
"engines": {
"node": ">=8.0.0",
"npm": ">=5.2.0"
},
"devDependencies": {
"lerna": "^4.0.0"
}
}