forked from garden-io/garden
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.57 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "garden",
"description": "A full-featured development framework for containers and serverless",
"repository": {
"type": "git",
"url": "git+https://github.com/garden-io/garden.git"
},
"author": "Garden Technologies, Inc. <info@garden.io>",
"license": "MPL-2.0",
"homepage": "https://github.com/garden-io/garden",
"engines": {
"npm": ">=5.0.0"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@google-cloud/kms": "^1.5.3",
"@lerna/version": "^3.18.5",
"@types/bluebird": "^3.5.29",
"@types/fs-extra": "^8.0.1",
"@types/google-cloud__kms": "^1.5.0",
"@types/lodash": "^4.14.149",
"@types/node": "^12.12.14",
"@types/semver": "^6.2.0",
"axios": "^0.19.0",
"deline": "^1.0.4",
"execa": "^3.4.0",
"fs-extra": "^8.1.0",
"gulp": "^4.0.2",
"gulp-license-check": "^1.2.1",
"handlebars": "^4.5.3",
"husky": "^3.1.0",
"lerna": "^3.19.0",
"lodash": "^4.17.15",
"markdown-link-check": "^3.8.0",
"remark-cli": "^7.0.1",
"remark-validate-links": "^9.0.1",
"replace-in-file": "^4.2.0",
"semver": "^6.3.0",
"shx": "^0.3.2",
"ts-node": "^8.5.2",
"tslint": "^5.20.1",
"tslint-microsoft-contrib": "^6.2.0",
"tslint-no-focused-test": "^0.5.0",
"tslint-no-unused": "^0.2.0-alpha.1",
"typescript": "^3.7.2",
"typescript-formatter": "^7.2.2"
},
"scripts": {
"build": "npm run clean && lerna bootstrap && lerna run build",
"dist": "npm run bootstrap && lerna run dist",
"bootstrap": "lerna bootstrap",
"check-docs": "./bin/check-docs",
"check-licenses": "gulp check-licenses",
"add-licenses": "copyright-header --license-file support/license-header.txt --syntax support/license-syntax.yaml --add-path dashboard/src:garden-service/src:garden-service/test --output-dir .",
"check-package-lock": "git diff --quiet HEAD -- package-lock.json || (echo 'package-lock.json is dirty!' && exit 1)",
"check-all": "npm run check-docs && npm run check-package-lock && npm run check-licenses && npm run lint",
"clean": "lerna run clean && git clean -X -f && find . -name \".garden\" -type d -prune -exec rm -rf '{}' '+'",
"fix-format": "lerna run fix-format --no-bail",
"generate-docs": "lerna run generate-docs",
"integ": "lerna run integ",
"lint": "lerna run lint --no-bail && gulp check-licenses",
"test": "lerna run test --no-bail"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm run check-all && npm test"
}
}
}