forked from pact-foundation/pact-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
127 lines (127 loc) · 3.44 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "pact",
"version": "2.3.1",
"description": "Pact for all things Javascript",
"main": "./src/pact.js",
"scripts": {
"clean": "rimraf docs dist coverage logs pacts jscpd.json",
"coverage": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"docs": "documentation build -o docs -f html -g --name 'Pact' src/pact.js",
"dist": "webpack --config ./config/webpack.web.config.js",
"lint": "standard",
"jscpd": "jscpd -p src -r json -o jscpd.json",
"predist": "npm run clean && npm run lint && npm run jscpd",
"postdist": "npm t",
"test": "istanbul cover ./node_modules/.bin/_mocha --timeout 10000 -- ./test",
"test:karma": "npm run test:karma:jasmine && npm run test:karma:mocha",
"test:karma:jasmine": "karma start ./karma/jasmine/karma.conf.js",
"test:karma:mocha": "karma start ./karma/mocha/karma.conf.js",
"test:checkCoverage": "istanbul check",
"posttest": "npm run test:checkCoverage && npm run test:karma && npm run docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pact-foundation/pact-js.git"
},
"engines": {
"node": ">=4"
},
"keywords": [
"pact",
"pact-js",
"javascript",
"contract testing",
"testing",
"consumer driven testing"
],
"author": "Beth Skurrie <[email protected]> (https://github.com/bethesque)",
"contributors": [
{
"name": "Tarcio Saraiva",
"email": "[email protected]",
"url": "http://twitter.com/tarciosaraiva"
},
{
"name": "Matt Fellows",
"email": "[email protected]",
"url": "http://twitter.com/matthewfellows"
},
{
"name": "David Stanciu",
"email": "[email protected]",
"url": "https://github.com/dstanciu29"
},
{
"name": "Michel Boudreau",
"email": "[email protected]",
"url": "http://codinghitchhiker.com"
},
{
"name": "Fu Ying",
"email": "[email protected]"
},
{
"name": "Malinda Kapuruge",
"email": "[email protected]"
},
{
"name": "Ben Sayers",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/pact-foundation/pact-js/issues"
},
"homepage": "http://docs.pact.io/documentation/javascript.html",
"standard": {
"parser": "babel-eslint",
"ignore": [
"config/**",
"test/**",
"dist/**",
"docs/**",
"examples/**"
]
},
"dependencies": {
"es6-promise": "3.2.1",
"lodash.isfunction": "3.0.8",
"lodash.isnil": "4.0.0",
"lodash.isundefined": "3.0.1",
"lodash.omitby": "4.6.0",
"@pact-foundation/pact-node": "4.8.x",
"cli-color": "^1.1.0"
},
"devDependencies": {
"babel-cli": "6.x",
"babel-eslint": "6.x",
"babel-loader": "6.x",
"babel-preset-es2015": "6.x",
"bluebird": "3.x",
"chai": "3.x",
"chai-as-promised": "5.x",
"coveralls": "2.x",
"documentation": "4.0.0-beta9",
"imports-loader": "0.x",
"istanbul": "0.4.x",
"jasmine-core": "2.x",
"jscpd": "0.6.x",
"json-loader": "0.5.x",
"karma": "1.x",
"karma-chai": "0.1.x",
"karma-jasmine": "1.x",
"karma-mocha": "1.x",
"karma-pact": "0.0.7",
"karma-phantomjs-launcher": "1.x",
"mocha": "3.x",
"nock": "8.x",
"proxyquire": "1.x",
"rimraf": "2.x",
"sinon": "1.x",
"sinon-chai": "2.x",
"standard": "8.x",
"superagent": "2.x",
"webpack": "1.x"
}
}