-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.37 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
{
"name": "judge-d",
"version": "0.0.1",
"description": "CLI for publishing and validating contract tests using judge-d API",
"keywords": [
"pacts",
"judge-d",
"contracts"
],
"main": "./lib/index.js",
"bin": {
"judge-d": "./bin/judge-d.js"
},
"files": [
"bin",
"lib",
"template"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "jest",
"release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HLTech/judge-d-js.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/HLTech/judge-d-js/issues"
},
"homepage": "https://github.com/HLTech/judge-d-js",
"devDependencies": {
"@types/ejs": "^3.0.6",
"@types/jest": "^26.0.20",
"@types/mock-fs": "^4.13.0",
"@types/yargs": "^15.0.13",
"factory.ts": "^0.5.1",
"husky": "^4.3.8",
"jest": "^26.6.3",
"mock-fs": "^4.13.0",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"ts-jest": "^26.5.2",
"typescript": "^4.2.2"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"tag": "latest"
},
"dependencies": {
"axios": "^0.26.0",
"ejs": "^3.1.6",
"yargs": "^17.3.1"
}
}