This repository has been archived by the owner on Oct 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
84 lines (84 loc) · 2.13 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "pact-js-mocha",
"version": "1.0.2-alpha",
"description": "Mocha Interface for Pact",
"main": "./src/index.js",
"scripts": {
"coverage": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"lint": "standard",
"jscpd": "jscpd -p src -r json -o jscpd.json",
"pretest": "npm run lint && npm run jscpd",
"test": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- ./test",
"changelog": "./node_modules/.bin/conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pact-foundation/pact-js-mocha.git"
},
"keywords": [
"pact",
"pact-js",
"javascript",
"contract testing",
"testing",
"consumer driven testing"
],
"author": "Beth Skurrie <beth@bethesque.com> (https://github.com/bethesque)",
"contributors": [
{
"name": "Tarcio Saraiva",
"email": "tarcio@gmail.com",
"url": "http://twitter.com/tarciosaraiva"
},
{
"name": "David Stanciu",
"email": "davidstanciu29@gmail.com",
"url": "https://github.com/dstanciu29"
},
{
"name": "Michel Boudreau",
"email": "michelboudreau@gmail.com",
"url": "http://codinghitchhiker.com"
},
{
"name": "Fu Ying",
"email": "fu.ying.er@rea-group.com"
},
{
"name": "Malinda Kapuruge",
"email": "kaushalye@gmail.com"
},
{
"name": "Ben Sayers",
"email": "bpsayers@gmail.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/pact-foundation/pact-js-mocha/issues"
},
"homepage": "http://docs.pact.io/documentation/javascript.html",
"standard": {
"ignore": [
"test/**"
]
},
"dependencies": {
"@pact-foundation/pact-node": "4.5.x",
"escape-string-regexp": "1.0.5",
"mocha": "3.x",
"pact": "1.0.0-rc"
},
"devDependencies": {
"bluebird": "3.x",
"body-parser": "1.x",
"chai": "3.x",
"conventional-changelog-cli": "^1.2.0",
"coveralls": "2.x",
"express": "4.x",
"istanbul": "0.x",
"jscpd": "0.x",
"standard": "7.x",
"superagent": "2.x"
}
}