-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.32 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": "swagger-min",
"version": "0.1.0-beta.3",
"description": "Show only the parts of a swagger document that you are interested in",
"main": "src/swagger-min.js",
"nyc": {
"all": true,
"check-coverage": true,
"per-file": true,
"lines": 99,
"statements": 99,
"functions": 99,
"branches": 99,
"include": [
"src/**/*.js"
],
"exclude": [
"src/swagger-min-cli.js"
]
},
"scripts": {
"test": "nyc --reporter=html --reporter=text mocha -R xunit -O output=test-results/mocha/results.xml -R spec",
"coverage": "nyc report --reporter=text-lcov > coverage.lcover && codecov"
},
"author": "Kevin Johnson",
"license": "MIT",
"dependencies": {
"axios": "^0.18.0",
"commander": "^2.19.0",
"fs": "0.0.1-security",
"istanbul": "^0.4.5",
"js-yaml": "^3.12.1",
"nyc": "^13.2.0"
},
"bin": {
"swagger-min": "src/swagger-min-cli.js"
},
"devDependencies": {
"codecov": "^3.1.0",
"mocha": "^5.2.0"
},
"directories": {
"doc": "docs",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kjjuno/swagger-min.git"
},
"keywords": [
"swagger"
],
"bugs": {
"url": "https://github.com/kjjuno/swagger-min/issues"
},
"homepage": "https://github.com/kjjuno/swagger-min#readme"
}