-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
37 lines (37 loc) · 1.5 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
{
"name": "pactum-examples",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test:api-challenges": "mocha api-challenges --timeout 5000",
"test:pd:intro": "mocha pactum-demo/intro",
"test:pd:request-making": "mocha pactum-demo/request-making",
"test:pd:response-validation": "mocha pactum-demo/response-validation",
"start:pd:mock-server": "node pactum-demo/mock-server/mock.js",
"start:pd:comp:is": "node pactum-demo/component-testing/inventory-service.js",
"start:pd:comp:os": "node pactum-demo/component-testing/order-service.js",
"test:pd:comp": "mocha pactum-demo/component-testing/tests",
"start:pd:cont:fs": "docker-compose -f pactum-demo/contract-testing/docker-compose.yml up",
"start:pd:cont:is": "node pactum-demo/contract-testing/inventory-service/inventory-service.js",
"test:pd:cont:is": "mocha pactum-demo/contract-testing/inventory-service/tests",
"start:pd:cont:os": "node pactum-demo/contract-testing/order-service/order-service.js",
"test:pd:cont:os": "mocha pactum-demo/contract-testing/order-service/tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pactumjs/pactum-examples.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/pactumjs/pactum-examples/issues"
},
"homepage": "https://github.com/pactumjs/pactum-examples#readme",
"dependencies": {
"mocha": "^9.0.1",
"pactum": "^3.1.9",
"pactum-flow-plugin": "0.1.3"
}
}