forked from rafaelaazevedo/tau-pact-nodejs-course
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.32 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
{
"name": "tau-pact-nodejs-course",
"version": "1.0.0",
"description": "A simple Nodejs + jest project configuring contract tests with PactJS",
"main": "src/index.js",
"scripts": {
"consumer": "node src/consumerService.js",
"provider": "node src/providerService.js",
"test:consumer": "jest __tests__/contract/consumer --runInBand --setupFiles ./__tests__/helpers/pactSetup.js --setupTestFrameworkScriptFile=./__tests__/helpers/pactTestWrapper.js",
"test:provider": "jest __tests__/contract/provider --runInBand --force-exit",
"publish:contract": "node ./__tests__/helpers/publish.js"
},
"repository": {
"type": "git",
"url": "https://github.com/rafaelaazevedo/tau-pact-nodejs-course.git"
},
"keywords": [
"nodejs",
"contract-tests",
"pactjs",
"pact",
"tutorial",
"course",
"tau"
],
"author": "Rafaela Azevedo",
"license": "MIT",
"bugs": {
"url": "https://github.com/rafaelaazevedo/tau-pact-nodejs-course/issues"
},
"homepage": "https://github.com/rafaelaazevedo/tau-pact-nodejs-course#readme",
"devDependencies": {
"@pact-foundation/pact": "^9.17.0",
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"eslint": "^6.8.0",
"express": "^4.17.1",
"jest": "^25.1.0"
},
"jest": {
"testEnvironment": "node"
}
}