forked from pact-foundation/pact-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
159 lines (159 loc) · 5.78 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
154
155
156
157
158
159
{
"name": "@pact-foundation/pact",
"version": "9.11.1",
"description": "Pact for all things Javascript",
"main": "./pact.js",
"types": "./pact.d.ts",
"scripts": {
"build": "npm run lint && npm run compile",
"compile": "rimraf dist && tsc",
"clean": "rimraf docs dist dist-web coverage .nyc_output logs pacts jscpd.json",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"deploy:package": "tar -czf pactjs.tar.gz config dist src package.json README.md LICENSE",
"deploy:prepare": "npm i --production && npm run deploy:package && ./scripts/create_npmrc_file.sh",
"dist": "npm run compile && webpack --config ./config/webpack.web.config.js && cp package.json ./dist",
"jscpd": "jscpd -p src -r json -o jscpd.json",
"lint": "npm run lint:prettier:ts && npm run lint:prettier:js && tslint -c tslint.json '{src,test,examples}/**/*.ts' -e '**/node_modules/**/*.ts'",
"lint:fix": "prettier --parser typescript --write \"{src,test,examples}/**/*.ts\" && prettier --write \"{src,test,examples}/**/*.js\"",
"lint:prettier:ts": "prettier --parser typescript --check \"{src,test,examples}/**/*.ts\"",
"lint:prettier:js": "prettier --check \"{src,test,examples}/**/*.js\"",
"postdist": "npm t",
"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 && npm run test:message-examples && npm run test:serverless-examples && npm run test:graphql-examples",
"test:e2e-examples": "cd examples/e2e && npm it",
"test:ava-examples": "cd examples/ava && npm it",
"test:jest-examples": "cd examples/jest && npm it",
"test:mocha-examples": "cd examples/mocha && npm it",
"test:ts-examples": "cd examples/typescript && npm it",
"test:message-examples": "cd examples/messages && npm it",
"test:serverless-examples": "cd examples/serverless && npm it",
"test:graphql-examples": "cd examples/graphql && npm it",
"test:karma": "npm run test:karma:jasmine && npm run test:karma:mocha",
"test:karma:jasmine": "cd examples/karma && npm i && npm run test:jasmine",
"test:karma:mocha": "cd examples/karma && npm i && npm run test:mocha",
"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": ">=6"
},
"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",
"dependencies": {
"@pact-foundation/pact-node": "^10.9.7",
"@types/bluebird": "^3.5.20",
"@types/bunyan": "^1.8.3",
"@types/express": "^4.11.1",
"bluebird": "~3.5.1",
"body-parser": "^1.18.2",
"bunyan": "^1.8.13",
"bunyan-prettystream": "^0.1.3",
"cli-color": "^1.1.0",
"es6-object-assign": "^1.1.0",
"es6-promise": "^4.1.1",
"express": "^4.16.3",
"graphql": "^14.0.0",
"graphql-tag": "^2.9.1",
"http-proxy": "^1.18.1",
"http-proxy-middleware": "^0.19.0",
"lodash": "^4.17.16",
"lodash.isfunction": "3.0.8",
"lodash.isnil": "4.0.0",
"lodash.isundefined": "3.0.1",
"lodash.omit": "^4.5.0",
"lodash.omitby": "4.6.0",
"pkginfo": "^0.4.1",
"popsicle": "^9.2.0"
},
"devDependencies": {
"@babel/cli": "~7.6.0",
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.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/q": "^1.5.2",
"@types/sinon": "^7.0.6",
"@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": "^5.2.0",
"babel-eslint": "~10.0.3",
"babel-loader": "^8.0.6",
"chai": "~4.1.2",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.2",
"enhanced-resolve": "^3.4.1",
"eslint": "^5.6.1",
"eslint-config-prettier": "^5.0.0",
"eslint-plugin-prettier": "^3.1.0",
"imports-loader": "~0.7.1",
"istanbul": "~0.4.5",
"jasmine-core": "~2.9.1",
"jscpd": "0.6.22",
"json-loader": "~0.5.7",
"loader-utils": "^1.1.0",
"mocha": "^5.1.1",
"mocha-lcov-reporter": "^1.3.0",
"nock": "^9.1.6",
"nyc": "^15.0.0-beta.0",
"prettier": "^1.18.2",
"proxyquire": "^2.0.1",
"rimraf": "^2.7.1",
"sinon": "^7.2.4",
"sinon-chai": "^3.3.0",
"source-map-loader": "^0.2.1",
"source-map-support": "^0.4.18",
"standard-version": "^8.0.1",
"superagent": "^3.8.2",
"ts-mock-imports": "^1.2.6",
"ts-node": "^3.3.0",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "^3.3.3",
"webpack": "^3.5.5"
}
}