forked from pact-foundation/pact-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
153 lines (153 loc) · 4.85 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
{
"name": "@pact-foundation/pact",
"version": "5.9.1",
"description": "Pact for all things Javascript",
"main": "./pact.js",
"types": "./pact.d.ts",
"scripts": {
"build": "npm run lint && npm run compile",
"compile": "tsc",
"clean": "rimraf docs dist dist-web coverage .nyc_output logs pacts jscpd.json",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"deploy:prepare": "./scripts/create_npmrc_file.sh",
"dist": "npm run compile && webpack --config ./config/webpack.web.config.js",
"jscpd": "jscpd -p src -r json -o jscpd.json",
"lint": "standard && tslint -c tslint.json 'src/**/*.ts'",
"postdist": "npm t",
"posttest": "npm run test:karma",
"predist": "npm run clean && npm run lint && npm run jscpd",
"release": "standard-version",
"test": "nyc --check-coverage --reporter=html --reporter=text-summary mocha",
"test:examples": "npm run test:e2e-examples && npm run test:jest-examples && npm run test:mocha-examples && npm run test:ava-examples && npm run test:ts-examples",
"test:e2e-examples": "cd examples/e2e && npm i && npm t",
"test:ava-examples": "cd examples/ava && npm i && npm t",
"test:jest-examples": "cd examples/jest && npm i && npm t",
"test:mocha-examples": "cd examples/mocha && npm i && npm t",
"test:ts-examples": "cd examples/typescript && npm i && npm t",
"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",
"travis": "./scripts/build.sh",
"appveyor": "./scripts/build.ps1",
"webpack": "webpack --config ./config/webpack.web.config.js"
},
"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": "Matt Fellows <[email protected]> (http://twitter.com/matthewfellows)",
"contributors": [
{
"name": "Tarcio Saraiva",
"email": "[email protected]",
"url": "http://twitter.com/tarciosaraiva"
},
{
"name": "Michel Boudreau",
"email": "[email protected]",
"url": "http://codinghitchhiker.com"
},
{
"name": "Beth Skurrie",
"email": "[email protected]",
"url": "https://github.com/bethesque"
}
],
"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": {
"@pact-foundation/pact-node": "^6.13.0",
"cli-color": "^1.1.0",
"es6-object-assign": "^1.1.0",
"es6-promise": "^4.1.1",
"lodash": "^4.17.4",
"lodash.isfunction": "3.0.8",
"lodash.isnil": "4.0.0",
"lodash.isundefined": "3.0.1",
"lodash.omitby": "4.6.0",
"popsicle": "^9.2.0"
},
"devDependencies": {
"@pact-foundation/karma-pact": "~2.1.5",
"@types/bluebird": "^3.5.20",
"@types/bunyan": "^1.8.3",
"@types/chai": "^4.0.3",
"@types/chai-as-promised": "0.0.31",
"@types/cli-color": "^0.3.29",
"@types/form-data": "^2.2.1",
"@types/lodash": "^4.14.73",
"@types/lodash.isnil": "^4.0.3",
"@types/mocha": "^2.2.41",
"@types/nock": "^9.1.2",
"@types/node": "^8.0.24",
"@types/proxyquire": "^1.3.27",
"@types/q": "^1.0.6",
"@types/sinon": "^2.3.3",
"@types/sinon-chai": "^2.7.29",
"@types/superagent": "^3.5.7",
"@types/tough-cookie": "^2.3.2",
"@types/underscore": "^1.8.5",
"awesome-typescript-loader": "^3.2.3",
"babel-cli": "~6.26.0",
"babel-eslint": "~8.2.1",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"bluebird": "~3.5.1",
"chai": "~4.1.2",
"chai-as-promised": "^7.1.1",
"coveralls": "^2.13.3",
"enhanced-resolve": "^3.4.1",
"imports-loader": "~0.7.1",
"istanbul": "~0.4.5",
"jasmine-core": "~2.9.1",
"jscpd": "0.6.10",
"json-loader": "~0.5.7",
"karma": "~2.0.0",
"karma-chai": "~0.1.0",
"karma-jasmine": "^1.1.0",
"karma-mocha": "~1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"loader-utils": "^1.1.0",
"mocha": "~5.0.0",
"mocha-lcov-reporter": "^1.3.0",
"nock": "^9.1.6",
"nyc": "^11.2.0",
"proxyquire": "^1.8.0",
"rimraf": "^2.6.2",
"sinon": "^3.2.1",
"sinon-chai": "^2.13.0",
"source-map-loader": "^0.2.1",
"source-map-support": "^0.4.18",
"standard": "^11.0.0",
"standard-version": "^4.3.0",
"superagent": "^3.8.2",
"ts-node": "^3.3.0",
"tslint": "^5.8.0",
"typescript": "^2.7.2",
"webpack": "^3.5.5"
}
}