forked from pact-foundation/pact-js-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
171 lines (171 loc) · 4.55 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
{
"name": "@pact-foundation/pact-core",
"version": "13.9.0",
"description": "Core of @pact-foundation/pact. You almost certainly don't want to depend on this directly.",
"main": "src/index.js",
"homepage": "https://github.com/pact-foundation/pact-js-core#readme",
"types": "src/index.d.ts",
"bin": {
"pact": "bin/pact.js",
"pact-broker": "bin/pact-broker.js",
"pact-mock-service": "bin/pact-mock-service.js",
"pact-stub-service": "bin/pact-stub-service.js",
"pact-provider-verifier": "bin/pact-provider-verifier.js",
"pact-message": "bin/pact-message.js",
"pactflow": "bin/pactflow.js"
},
"os": [
"darwin",
"linux",
"win32"
],
"cpu": [
"x64",
"ia32",
"arm64"
],
"engine": {
"node": ">=6"
},
"repository": {
"type": "git",
"url": "git://github.com/pact-foundation/pact-js-core.git"
},
"keywords": [
"pact",
"node",
"wrapper",
"mock",
"service",
"provider",
"verifier"
],
"author": "Matt Fellows <[email protected]> (http://www.onegeek.com.au)",
"contributors": [
"Michel Boudreau <[email protected]> (codinghitchhiker.com)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/pact-foundation/pact-js-core/issues"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@types/needle": "2.5.2",
"@types/pino": "6.3.11",
"bindings": "^1.5.0",
"chalk": "4.1.2",
"check-types": "7.3.0",
"cross-spawn": "7.0.3",
"mkdirp": "1.0.0",
"needle": "2.8.0",
"node-addon-api": "^4.2.0",
"pino": "6.13.1",
"pino-pretty": "^6.0.0",
"promise-timeout": "1.3.0",
"rimraf": "2.6.2",
"underscore": "1.12.1",
"unixify": "1.0.0"
},
"devDependencies": {
"@pact-foundation/pact-js-prettier-config": "^1.0.0",
"@tsconfig/node14": "^1.0.3",
"@types/basic-auth": "^1.1.2",
"@types/bindings": "^1.5.1",
"@types/chai": "4.1.2",
"@types/chai-as-promised": "7.1.0",
"@types/check-types": "^7.3.2",
"@types/cors": "^2.8.6",
"@types/cross-spawn": "^6.0.1",
"@types/decompress": "^4.2.3",
"@types/express": "4.11.1",
"@types/mkdirp": "^0.5.2",
"@types/mocha": "9.0.0",
"@types/node": "9.4.6",
"@types/promise-timeout": "^1.3.0",
"@types/rimraf": "^2.0.2",
"@types/sinon": "^9.0.11",
"@types/tar": "^4.0.3",
"@types/underscore": "1.8.7",
"@types/unixify": "^1.0.0",
"@types/url-join": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"axios": "^0.24.0",
"basic-auth": "2.0.0",
"body-parser": "1.18.2",
"chai": "4.1.2",
"chai-as-promised": "7.1.1",
"cors": "2.8.4",
"cross-env": "^5.1.3",
"decamelize": "2.0.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"express": "4.16.2",
"form-data": "^4.0.0",
"mocha": "^9.1.3",
"nodemon": "^2.0.4",
"prettier": "^2.3.0",
"protobufjs": "^6.11.2",
"sinon": "9.2.4",
"snyk": "^1.747.0",
"standard-version": "^9.1.0",
"ts-jest": "^27.0.7",
"ts-node": "10.4.0",
"typescript": "4.2.4"
},
"scripts": {
"clean": "rimraf '{src,test,bin,standalone}/**/*.{js,map,d.ts}' 'package.zip' '.tmp' 'tmp'",
"lint": "eslint . --ext .ts --config .eslintrc",
"prebuild": "npm run clean && bash script/download-libs.sh",
"build": "tsc",
"prerelease": "npm run snyk-protect",
"release": "standard-version",
"test": "cross-env LOGLEVEL=debug PACT_DO_NOT_TRACK=true mocha \"{src,test,bin,standalone}/**/*.spec.ts\"",
"snyk-protect": "snyk protect",
"format:base": "prettier --parser typescript",
"format:check": "npm run format:base -- --list-different \"{src,standalone,bin,test}/**/*.{ts,tsx}\"",
"format:fix": "npm run format:base -- --write \"{src,standalone,bin,test}/**/*.{ts,tsx}\"",
"postinstall": "npm run native",
"native": "node-gyp rebuild -v"
},
"prettier": "@pact-foundation/pact-js-prettier-config",
"standard-version": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Fixes and Improvements"
},
{
"type": "chore",
"hidden": true
},
{
"type": "docs",
"hidden": true
},
{
"type": "style",
"hidden": true
},
{
"type": "refactor",
"section": "Fixes and Improvements"
},
{
"type": "perf",
"hidden": true
},
{
"type": "test",
"hidden": true
}
]
},
"snyk": true
}