-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
90 lines (90 loc) · 1.93 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "swagger-combine",
"version": "1.4.0",
"description": "Combines multiple Swagger schemas into one dereferenced schema",
"main": "src/index.js",
"bin": {
"swagger-combine": "./bin/swagger-combine"
},
"scripts": {
"test": "mocha --recursive test",
"test:integration": "mocha test/integration.spec.js",
"test:unit": "mocha --recursive test/unit",
"test:coverage": "nyc npm run test:unit",
"fmt": "maxdome-prettier '{src,test}/**/*.js'",
"precommit": "npm test"
},
"keywords": [
"swagger",
"combine",
"merge",
"api",
"documentation",
"open api"
],
"contributors": [
{
"name": "Fabian Schneider",
"email": "fabbbbbi+git@googlemail.com"
},
{
"name": "Marcin Podlodowski",
"email": "marcin@podlodowski.it"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/maxdome/swagger-combine.git"
},
"bugs": {
"url": "https://github.com/maxdome/swagger-combine/issues"
},
"homepage": "https://github.com/maxdome/swagger-combine#readme",
"license": "MIT",
"dependencies": {
"call-me-maybe": "^1.0.1",
"js-yaml": "^4.1.0",
"json-schema-ref-parser": "^9.0.9",
"lodash": "^4.17.21",
"minimist": "^1.2.5",
"swagger-parser": "^10.0.3",
"traverse": "^0.6.6",
"url-join": "^4.0.1"
},
"devDependencies": {
"@maxdome/prettier": "^1.3.3",
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"chai-somewhere": "^1.0.2",
"express": "^4.17.1",
"mocha": "^9.1.3",
"mock-require": "^3.0.3",
"nock": "^13.1.4",
"nyc": "^15.1.0",
"sinon": "^11.1.2",
"sinon-chai": "^3.7.0"
},
"files": [
"bin/",
"examples/",
"src/",
"test/"
],
"directories": {
"bin": "bin",
"example": "examples"
},
"engines": {
"node": ">=10"
},
"nyc": {
"exclude": [
"examples",
"test"
],
"reporter": [
"text",
"lcov"
]
}
}