-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
85 lines (85 loc) · 2.31 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
{
"name": "stubmatic",
"preferGlobal": true,
"version": "6.0.0",
"description": "Mock HTTP calls without coding. Designed specially for testing and QAs.",
"man": "./man/stubmatic.1",
"main": "./lib/stubmatic.js",
"scripts": {
"test": "jasmine spec/*spec.js",
"ft": "jasmine functional-tests/*spec.js",
"benchmark": "node ./benchmark",
"posttest2": "standard ./lib/*.js && npm run coverage:check",
"coverage": "istanbul cover -x 'spec/*spec.js' --dir './coverage_spec' jasmine --captureExceptions spec/*spec.js",
"coverageft": "istanbul cover -x 'functional-tests/*spec.js' --dir './coverage_ft' jasmine --captureExceptions functional-tests/*spec.js",
"coverage-all": "npm run coverage && npm run coverageft && istanbul report",
"coverage:check": "node ./node_modules/istanbul/lib/cli.js check-coverage --branch 90 --statement 90",
"postinstall": "node tasks/postinstall.js"
},
"author": "Amit Kumar Gupta (http://amitkumargupta.work/)",
"dependencies": {
"accept": "^3.1.3",
"axios": "^0.21.1",
"deep-assign": "^2.0.0",
"fast-lorem-ipsum": "^1.2.0",
"fast-xml-parser": "^3.12.13",
"hashes": "^0.1.3",
"http-proxy": "^1.18.1",
"into-stream": "^5.1.0",
"isbinaryfile": "^4.0.2",
"js-joda": "^1.9.2",
"jsonlint": "^1.6.3",
"nimn-date-parser": "^1.0.0",
"nimnjs": "^2.2.0",
"notepack.io": "^2.2.0",
"pump": "^3.0.0",
"winston": "^2.4.4",
"yamljs": "^0.2.8"
},
"bin": {
"stubmatic": "index.js"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/NaturalIntelligence/Stubmatic.git"
},
"bugs": {
"url": "https://github.com/NaturalIntelligence/Stubmatic/issues"
},
"homepage": "https://github.com/NaturalIntelligence/Stubmatic",
"keywords": [
"skeleton",
"stubby",
"stub",
"stubmatic",
"soap",
"restful",
"REST",
"SOAP",
"mock",
"http",
"https",
"ssl",
"gzip",
"simulator",
"tcp",
"proxy",
"fake",
"validate",
"validator",
"msgpack",
"nimn"
],
"devDependencies": {
"chai": "^3.5.0",
"chai-http": "^4.2.1",
"dir-compare": "^1.7.1",
"istanbul": "^0.4.5",
"jasmine": "^2.99.0",
"jasmine-core": "^2.99.1",
"portfinder": "^1.0.20",
"q": "^1.4.1",
"rewire": "^3.0.2"
}
}