-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.39 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
{
"name": "swagger-compare",
"version": "0.1.4",
"description": "Describes the difference between two versions of a swagger document",
"main": "src/swagger-compare.js",
"nyc": {
"all": true,
"check-coverage": true,
"per-file": true,
"lines": 99,
"statements": 99,
"functions": 99,
"branches": 90,
"include": [
"src/**/*.js"
],
"exclude": [
"src/swagger-compare-cli.js"
]
},
"directories": {
"test": "test"
},
"scripts": {
"test": "nyc --reporter=html --reporter=text mocha -R mocha-multi-reporters -O configFile=test/mocha.json",
"coverage": "nyc report --reporter=text-lcov > coverage.lcover && codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kjjuno/swagger-compare.git"
},
"keywords": [
"swagger",
"compare",
"x-replaced-by",
"x-remove-on",
"deprecation",
"versioning"
],
"author": "Kevin Johnson",
"license": "MIT",
"bugs": {
"url": "https://github.com/kjjuno/swagger-compare/issues"
},
"homepage": "https://github.com/kjjuno/swagger-compare#readme",
"devDependencies": {
"codecov": "^3.2.0",
"mocha": "^5.2.0",
"mocha-multi-reporters": "^1.1.7",
"nyc": "^13.3.0"
},
"bin": {
"swagger-compare": "src/swagger-compare-cli.js"
},
"dependencies": {
"colors": "^1.3.3",
"diff": "^4.0.1",
"js-yaml": "^3.12.1"
}
}