-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
57 lines (57 loc) · 1.3 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
{
"name": "hippie-swagger",
"version": "3.3.2",
"description": "Hippie wrapper that provides end to end API testing with swagger validation",
"main": "index.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha --exit && npm run lint",
"lint": "node ./node_modules/standard/bin/cmd.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CacheControl/hippie-swagger.git"
},
"keywords": [
"hippie",
"swagger"
],
"author": "Cache Hamm",
"license": "ISC",
"bugs": {
"url": "https://github.com/CacheControl/hippie-swagger/issues"
},
"standard": {
"globals": [
"beforeEach",
"describe",
"it",
"before",
"expect",
"data",
"cloneSwagger",
"app",
"hippie",
"swaggerSchema",
"run"
]
},
"homepage": "https://github.com/CacheControl/hippie-swagger#readme",
"dependencies": {
"ajv": "^6.12.3",
"hippie": "^0.6.0",
"object-assign": "^4.1.1",
"qs": "^6.9.4",
"string.prototype.startswith": "^0.2.0"
},
"devDependencies": {
"chai": "^3.2.0",
"chai-as-promised": "^6.0.0",
"dirty-chai": "^2.0.1",
"express": "^4.17.1",
"lodash": "^4.17.15",
"mocha": "^4.1.0",
"nock": "^13.0.2",
"standard": "^14.3.4",
"swagger-parser": "^3.3.0"
}
}