forked from pact-foundation/pact-js-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.58 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.58 KB
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
{
"name": "@pact-foundation/pact-node",
"version": "6.11.0",
"description": "A wrapper for the Ruby version of Pact to work within Node",
"main": "src/index.js",
"homepage": "https://github.com/pact-foundation/pact-node#readme",
"types": "src/index.d.ts",
"bin": {
"pact": "bin/pact-cli.js"
},
"os": [
"darwin",
"linux",
"win32"
],
"cpu": [
"x64",
"ia32"
],
"engine": {
"node": ">=4"
},
"repository": {
"type": "git",
"url": "git://github.com/pact-foundation/pact-node.git"
},
"keywords": [
"pact",
"node",
"wrapper",
"mock",
"service",
"provider",
"verifier"
],
"author": "Michel Boudreau <michelboudreau@gmail.com> (codinghitchhiker.com)",
"contributors": [
"Matt Fellows <m@onegeek.com.au> (http://www.onegeek.com.au)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/pact-foundation/pact-node/issues"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@pact-foundation/pact-standalone": "3.7.0",
"@types/bunyan": "1.8.4",
"@types/q": "1.0.7",
"bunyan": "1.8.12",
"bunyan-prettystream": "0.1.3",
"caporal": "0.10.0",
"check-types": "7.3.0",
"mkdirp": "0.5.1",
"q": "1.5.1",
"request": "2.83.0",
"underscore": "1.8.3",
"unixify": "1.0.0",
"url-join": "4.0.0"
},
"devDependencies": {
"@types/chai": "4.1.2",
"@types/chai-as-promised": "7.1.0",
"@types/express": "4.11.1",
"@types/mocha": "2.2.48",
"@types/node": "9.4.6",
"@types/request": "2.47.0",
"@types/underscore": "1.8.7",
"basic-auth": "2.0.0",
"body-parser": "1.18.2",
"chai": "4.1.2",
"chai-as-promised": "7.1.1",
"cors": "2.8.4",
"cross-env": "5.1.3",
"decamelize": "2.0.0",
"express": "4.16.2",
"jscs": "3.0.7",
"mocha": "5.0.1",
"mocha-unfunk-reporter": "0.4.0",
"nodemon": "1.17.1",
"rewire": "3.0.2",
"rimraf": "2.6.2",
"sinon": "4.4.2",
"standard-version": "4.3.0",
"ts-node": "5.0.0",
"tslint": "5.9.1",
"typescript": "2.7.2"
},
"scripts": {
"clean": "rimraf '{src,test,bin}/**/*.{js,map,d.ts}' 'package.zip' '.tmp'",
"lint": "tslint -p tsconfig.json",
"pretest": "npm run build",
"test": "mocha -r ts-node/register -R mocha-unfunk-reporter -t 15000 -s 5000 -b --check-leaks --exit \"{src,test,bin}/**/*.spec.ts\"",
"dev": "npm run lint --force && npm test && node .",
"build": "npm run clean && tsc",
"start": "npm run watch",
"prerelease": "npm i && npm t && rm package-lock.json",
"release": "standard-version"
}
}