This repository has been archived by the owner on May 3, 2024. It is now read-only.
forked from garden-io/garden
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.59 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
72
{
"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. <[email protected]>",
"license": "MPL-2.0",
"homepage": "https://github.com/garden-io/garden",
"engines": {
"npm": ">=5.0.0"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@google-cloud/kms": "^1.6.3",
"@lerna/version": "^3.22.0",
"@types/bluebird": "^3.5.32",
"@types/fs-extra": "^9.0.1",
"@types/google-cloud__kms": "^1.5.1",
"@types/lodash": "^4.14.153",
"@types/node": "^12.12.14",
"@types/semver": "^7.2.0",
"axios": "^0.19.2",
"deline": "^1.0.4",
"execa": "^4.0.2",
"fs-extra": "^9.0.0",
"gulp": "^4.0.2",
"gulp-license-check": "^1.2.1",
"handlebars": "^4.7.6",
"husky": "^4.2.5",
"lerna": "^3.22.0",
"lodash": "^4.17.15",
"markdown-link-check": "^3.8.1",
"remark-cli": "^8.0.0",
"remark-validate-links": "^10.0.0",
"replace-in-file": "^6.0.0",
"semver": "^7.3.2",
"shx": "^0.3.2",
"ts-node": "^8.10.1",
"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.9.3",
"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"
}
},
"dependencies": {}
}