-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 904 Bytes
/
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
{
"name": "PACT-BSF",
"private": true,
"version": "1.0.0",
"description": "consumer contract testing using pact for BSF services",
"scripts": {
"test-consumer": "mocha --timeout=9999 client/client.spec.js",
"test-provider": "node server/verifyPacts.js",
"publish-pacts": "node client/tasks/publish-pact.js",
"pact-broker": "docker run -d -p 8080:80 risingstack/pact_broker_example",
"delete-pact": "curl -X DELETE http://localhost:8080/pacticipants/ReportService",
"test": "npm-run-all test-consumer publish-pacts test-provider"
},
"author": "BSF",
"dependencies": {
"npm-run-all": "4.1.2",
"request": "2.83.0",
"request-promise-native": "1.0.5"
},
"devDependencies": {
"@pact-foundation/pact": "8.2.2",
"@pact-foundation/pact-node": "8.3.0",
"chai": "4.1.2",
"mocha": "4.0.1",
"pact": "^4.3.2"
}
}