forked from HLTech/pact-gen-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.46 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
{
"name": "pact-gen-ts",
"version": "0.13.0",
"description": "Generating pact files from typescript definitions",
"keywords": [
"pacts",
"contracts",
"tests",
"typescript"
],
"main": "./lib/index.js",
"bin": {
"pact-gen-ts": "./bin/pact-gen-ts.js"
},
"files": [
"lib",
"bin"
],
"license": "MIT",
"scripts": {
"build": "tsc -p tsconfig.json",
"release": "semantic-release",
"test": "jest"
},
"dependencies": {
"glob": "^7.1.6",
"qs": "^6.10.1",
"ts-morph": "^19.0.0"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/jest": "^29.5.1",
"@types/node": "^14.14.35",
"@types/qs": "^6.9.6",
"axios": "^0.21.1",
"husky": "^4.3.8",
"jest": "^29.5.0",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"semantic-release": "^17.4.2",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "~5.1.3"
},
"peerDependencies": {
"typescript": "~5.1"
},
"repository": {
"type": "git",
"url": "https://github.com/HLTech/pact-gen-ts.git"
},
"homepage": "https://github.com/HLTech/pact-gen-ts",
"bugs": {
"url": "https://github.com/HLTech/pact-gen-ts/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"tag": "latest"
}
}