-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.52 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.52 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
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
{
"name": "@openformation/gpm",
"version": "1.0.0",
"author": "Open Formation GmbH <info@openformation.io>",
"description": "CLI for managing multiple Google Cloud Platform projects.",
"bin": {
"gpm": "./bin/gpm"
},
"scripts": {
"clean": "rm -rf dist",
"compile": "tsc",
"test": "NODE_ENV=test jest",
"build": "npm run clean && npm run compile",
"release": "npm run build && semantic-release"
},
"repository": "git@github.com:openformation/gpm.git",
"license": "MIT",
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/fs-extra": "^9.0.11",
"@types/inquirer": "^7.3.1",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.9",
"@types/verror": "^1.10.4",
"@types/yargs": "^15.0.10",
"cz-conventional-changelog": "^3.3.0",
"husky": "^4.3.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.5",
"ts-node": "^9.0.0",
"typescript": "^4.1.2"
},
"dependencies": {
"chalk": "^4.1.0",
"fs-extra": "^9.1.0",
"inquirer": "^7.3.3",
"make-dir": "^3.1.0",
"semantic-release": "^17.4.2",
"verror": "^1.10.0",
"yargs": "^16.1.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"release": {
"branches": [
"main"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public",
"tag": "latest"
}
}