forked from aws-amplify/amplify-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·57 lines (57 loc) · 2.3 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "amplify-cli",
"version": "0.1.0",
"description": "amplify-cli",
"scripts": {
"test-changed": "lerna run test --since master",
"test": "lerna run test",
"test-ci": "lerna run lint && lerna run test-ci",
"pretest": "lerna run lint ",
"e2e": "lerna run e2e",
"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 exec -- del /f package-lock.json && lerna bootstrap && cd packages/amplify-cli && del /f package-lock.json && npm link && cd ../.. && lerna run build",
"publish:master": "lerna publish --canary --yes --preid=alpha --exact --message 'chore(release): Publish [ci skip]' --no-git-tag-version --no-push",
"publish:beta": "lerna publish prerelease --conventional-commits --yes --exact --dist-tag=beta --preid=beta --message 'chore(release): Publish [ci skip]'",
"publish:release": "lerna publish --conventional-commits --exact --version=patch --yes --message 'chore(release): Publish [ci skip]'",
"postpublish:release": "git fetch . release:master && git push origin master",
"commit": "git-cz"
},
"bugs": {
"url": "https://github.com/aws-amplify/amplify-cli/issues"
},
"private": true,
"homepage": "https://github.com/aws-amplify/amplify-cli#readme",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/aws-amplify/amplify-cli.git"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm run lint && npm run test-changed"
}
},
"author": "Amazon Web Services",
"license": "Apache-2.0",
"dependencies": {
"lerna": "3.10.8"
},
"devDependencies": {
"@commitlint/cli": "^7.1.2",
"@commitlint/config-conventional": "^7.1.2",
"@commitlint/config-lerna-scopes": "^7.1.2",
"commitizen": "^3.0.2",
"cz-conventional-changelog": "^2.1.0",
"husky": "^1.1.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}