-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1003 Bytes
/
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
{
"name": "@gluecode-it/google-cloud-vm-handler",
"version": "1.0.0",
"description": "A wrapper to start and stop google cloud vms with integrated a event handler",
"main": "dist/src/index.js",
"devDependencies": {
"@babel/core": "7.13.8",
"@babel/preset-env": "7.13.9",
"@babel/preset-typescript": "7.13.0",
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@semantic-release/github": "7.2.0",
"@types/jest": "26.0.20",
"@types/node": "14.14.32",
"babel-jest": "26.6.3",
"commitlint": "11.0.0",
"husky": "4.3.8",
"jest": "26.6.3",
"semantic-release": "17.4.1",
"typescript": "4.2.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"scripts": {
"test": "jest --coverage",
"dev:test": "jest --coverage --coverage-reporters html --watch-all",
"prepare": "tsc"
},
"publishConfig": {
"access": "public"
},
"author": "",
"license": "ISC"
}