-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.43 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
{
"name": "dumpinator",
"version": "0.0.1",
"description": "Dumpinator is an automated QA tool for REST APIs. Its mission is to compare a list of HTTP Response Headers & Bodies in different environments & versions. The current version was developed as a development tool that quickly generates API response diffs that give an idea whether major refactorings work as expected. The goal is to develop Dumpinator as an independent, scriptable CLI tool that can be used for all sorts of REST APIs. It expects a main configuration file and spec files for each API endpoint that needs to be diff'ed. Each run writes the responses as JSON files in the given directory and outputs an easy-to-read HTML report of the diff. Used in combination with Jenkins, Dumpinator can be run in a CI pipeline but also be triggered manually by the QA team each time a new API release is about to be deployed as a replacement for tedious and time consuming regression tests.",
"main": "index.js",
"bin": {
"dp": "bin/dp.js"
},
"scripts": {
"lint": "eslint bin/ src/ test/",
"test": "mocha --timeout 3000 --recursive test",
"start": "node examples/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maxdome/dumpinator.git"
},
"keywords": [
"testing",
"rest",
"api",
"test",
"testframework"
],
"author": {
"name": "Maxdome",
"url": "http://bit.ly/2f3jfnP"
},
"contributors": [
{
"name": "Andi Heinkelein",
"email": "[email protected]"
},
{
"name": "Christian Neuhäuser",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/maxdome/dumpinator/issues"
},
"homepage": "https://github.com/maxdome/dumpinator#readme",
"dependencies": {
"argv": "0.0.2",
"co": "^4.6.0",
"colorfy": "^0.5.0",
"commander": "^2.9.0",
"cowsay": "^1.1.9",
"diff": "^3.1.0",
"glob": "^7.1.1",
"handlebars": "^4.0.6",
"json.sortify": "^2.0.2",
"lodash": "^4.17.2",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"mkdirp-then": "^1.2.0",
"promptly": "^2.1.0",
"rmdir": "^1.2.0",
"superagent": "^3.5.0"
},
"devDependencies": {
"eslint": "^3.16.1",
"eslint-config-airbnb-base": "^11.1.0",
"eslint-config-maxdome": "^2.0.0",
"eslint-plugin-import": "^2.2.0",
"express": "^4.14.0",
"inspect.js": "^1.4.0",
"mocha": "^3.1.2",
"sinon": "^1.17.6"
}
}