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 9
/
Copy pathpackage.json
62 lines (62 loc) · 1.68 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
{
"name": "@pact-foundation/karma-pact",
"version": "3.1.0",
"description": "Launches a Pact Mock Server for Karma",
"main": "./src/index.js",
"author": "Michel Boudreau <michelboudreau@gmail.com> (codinghitchhiker.com)",
"contributors": [
"Tarcio Saraiva <tarcio@gmail.com> (http://twitter.com/tarciosaraiva)"
],
"publishConfig": {
"access": "public"
},
"license": "MIT",
"engines": {
"node": ">=4"
},
"keywords": [
"karma-pact",
"karma",
"karma-plugin",
"karma-framework",
"pact",
"foundation",
"pact-js",
"javascript",
"testing"
],
"repository": {
"type": "git",
"url": "git+https://github.com/pact-foundation/karma-pact.git"
},
"bugs": {
"url": "https://github.com/pact-foundation/karma-pact/issues"
},
"homepage": "http://docs.pact.io/documentation/javascript.html",
"peerDependencies": {
"karma": ">=5.0.0",
"@pact-foundation/pact-node": ">=10.13.0"
},
"devDependencies": {
"@pact-foundation/pact-node": "^10.13.1",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"jasmine-core": "3.3.0",
"jasmine-spec-reporter": "4.2.1",
"jasminewd2": "2.2.0",
"karma": "^6.3.16",
"karma-chai": "0.1.0",
"karma-jasmine": "^4.0.1",
"karma-phantomjs-launcher": "1.0.4",
"karma-spec-reporter": "0.0.32",
"phantomjs-prebuilt": "2.1.16",
"standard-version": "8.0.1"
},
"scripts": {
"test": "npm run test:single && npm run test:multiple",
"test:single": "karma start test/karma-single.config.js",
"test:multiple": "karma start test/karma-multiple.config.js",
"prerelease": "npm i && npm t && rm package-lock.json",
"release": "standard-version"
}
}