-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.17 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
{
"name": "pmpact",
"version": "0.4.6",
"description": "A command line tool to convert Pact files to Postman collections.",
"main": "index.js",
"scripts": {
"test": "npm run test-unit && npm run test-integration",
"test-unit": "mocha --reporter mocha-better-spec-reporter \"tests/unit/**/*.js\"",
"test-integration": "mocha --reporter mocha-better-spec-reporter \"tests/integration/**/*.js\""
},
"bin": {
"pmpact": "pmpact.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ITV/pmpact.git"
},
"keywords": [
"Postman",
"Pact",
"convert"
],
"engines": {
"node": ">=20.11"
},
"author": "Romuald Quantin (ITV)",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/ITV/pmpact/issues"
},
"homepage": "https://github.com/ITV/pmpact#readme",
"dependencies": {
"axios": "1.7.7",
"commander": "4.1.1",
"debug": "4.3.4",
"http-status": "1.6.2",
"lodash": "4.17.21"
},
"devDependencies": {
"chai": "4.3.7",
"execa": "5.1.1",
"mocha": "10.2.0",
"mocha-better-spec-reporter": "3.1.0",
"proxyquire": "2.1.3",
"sinon": "15.0.3"
}
}