-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 991 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
28
29
30
31
32
{
"name": "pact-melbjs",
"version": "0.0.1",
"description": "Sample project for MelbJS",
"main": "index.js",
"scripts": {
"provider": "node ./provider/src/index.js",
"consumer": "EP=http://localhost:9980 node ./consumer/src/index.js",
"consumer:pact": "EP=http://localhost:1234 node ./consumer/src/index.js",
"pretest:consumer": "rimraf pacts logs",
"test:consumer": "mocha ./consumer/test/index.js --opts mocha.opts",
"test:provider": "mocha ./provider/test/index.js"
},
"author": "Tarcio Saraiva <[email protected]> (http://twitter.com/tarciosaraiva)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tarciosaraiva/pact-melbjs.git"
},
"devDependencies": {
"@pact-foundation/pact-node": "4.5.1",
"chai": "3.5.0",
"mocha": "2.5.3",
"pact": "1.0.0-rc",
"rimraf": "2.5.3"
},
"dependencies": {
"body-parser": "1.15.2",
"express": "4.14.0",
"request-promise": "3.0.0"
}
}