forked from aws-amplify/amplify-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·31 lines (31 loc) · 1.53 KB
/
package.json
File metadata and controls
executable file
·31 lines (31 loc) · 1.53 KB
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": "amplify-cli",
"version": "0.1.0",
"description": "amplify-cli",
"scripts": {
"test": "lerna run lint && lerna run test",
"lint": "lerna run lint",
"lint-fix": "lerna run lint-fix",
"clean": "rm -rf node_modules && lerna clean --yes",
"production-build": "lerna exec -- rm -f package-lock.json && lerna bootstrap --hoist && lerna run build",
"setup-dev": "lerna exec -- rm -f package-lock.json && lerna bootstrap && cd packages/amplify-cli && rm -f -- package-lock.json && npm link && cd ../.. && lerna run build",
"setup-dev-win": "lerna bootstrap && cd packages/amplify-cli && del /f package-lock.json && npm link",
"publish:master": "lerna publish --conventional-commits --cd-version=prerelease --yes --independent --npm-tag=unstable --preid=unstable --message 'chore(release): Publish [ci skip]'",
"publish:beta": "lerna publish --conventional-commits --cd-version=prerelease --yes --independent --npm-tag=beta --preid=beta --message 'chore(release): Publish [ci skip]'",
"publish:release": "lerna publish --conventional-commits --cd-version=patch --yes --independent --message 'chore(release): Publish [ci skip]'"
},
"bugs": {
"url": "https://github.com/aws-amplify/amplify-cli/issues"
},
"homepage": "https://github.com/aws-amplify/amplify-cli#readme",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/aws-amplify/amplify-cli.git"
},
"author": "Amazon Web Services",
"license": "Apache-2.0",
"dependencies": {
"lerna": "^2.11.0"
}
}