-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.33 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.33 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
{
"name": "utils",
"version": "0.1.6",
"description": "",
"main": "index.js",
"bin": "index.js",
"scripts": {
"test:kind": "",
"pretest:kind": "KUBECONFIG=./config.yaml kind create cluster",
"test": "jest",
"test:watch": "jest --watch || :",
"prepublish:docker": "npm version patch",
"publish:docker": "docker build -t ${GCR}/utils:$npm_package_version . && docker push ${GCR}/utils:$npm_package_version",
"posttest:kind": "rm ./config.yaml && KUBECONFIG=./config.yaml kind delete cluster",
"package": "pkg -t node10-macos-x64,node10-linux-x64 -o=packages/utils ."
},
"husky": {
"hooks": {
"pre-commit": "npm test"
}
},
"pkg": {
"assets": [
"node_modules/@pact-foundation/pact-node/standalone/**/*"
]
},
"keywords": [],
"author": "Suraj Keshri <surajkeshri@gmail.com>",
"license": "MIT",
"dependencies": {
"@pact-foundation/pact-node": "^10.4.0",
"capitalize": "^2.0.2",
"dotenv": "^8.2.0",
"husky": "^4.2.4",
"js-yaml": "^3.13.1",
"lodash": "^4.17.15",
"minimist": "^1.2.0",
"pact": "^4.3.2",
"pkg": "^4.4.3",
"yargs": "^15.1.0"
},
"devDependencies": {
"@types/jest": "^25.1.3",
"eslint": "^6.8.0",
"jest": "^25.1.0",
"jest-watch-typeahead": "^0.4.2",
"prettier": "^1.19.1",
"uuid": "^3.4.0"
}
}