-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.25 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
{
"name": "swagger-coverage",
"version": "0.1.2",
"description": "Proxy HTTP server able to generate a coverage report based on a swagger description",
"repository": {
"type": "git",
"url": "https://github.com/BuBuaBu/swagger-coverage.git"
},
"main": "index.js",
"scripts": {
"build": "babel src -d dist --copy-files",
"pretest": "eslint index.js src test && standard index.js src test",
"test": "echo TODO",
"prepublish": "npm run build"
},
"bin": {
"swagcov": "bin/swagcov"
},
"keywords": [
"swagger",
"coverage",
"proxy"
],
"engine": "node >= 6.3.0",
"author": "Vivien HENRIET",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-preset-node6": "^11.0.0",
"eslint": "^3.3.1",
"eslint-config-airbnb": "^10.0.1",
"eslint-plugin-import": "^1.13.0",
"standard": "^7.1.2"
},
"dependencies": {
"handlebars": "^4.0.5",
"html-inline": "^1.2.0",
"http-proxy": "^1.14.0",
"js-yaml": "^3.6.1",
"lodash": "^4.15.0",
"path-to-regexp": "^1.5.3",
"request-promise": "^4.1.1",
"shortid": "^2.2.6",
"stream-buffers": "^3.0.1"
},
"babel": {
"presets": [
"node6"
],
"sourceMaps": "inline",
"retainLines": true
}
}