-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.03 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
{
"name": "exegesis-koa",
"version": "0.0.1",
"description": "Koa middleware to handle OpenAPI 3.x.",
"main": "index.js",
"scripts": {
"test": "standard && nyc --reporter=html --reporter=text mocha test/**/*.test.js",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"keywords": [
"koa",
"OpenAPI",
"oas3",
"exegesis"
],
"author": {
"name": "James Mortemore",
"email": "[email protected]",
"url": "https://github.com/confuser"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:confuser/exegesis-koa.git"
},
"bugs": {
"url": "https://github.com/confuser/exegesis-koa/issues"
},
"devDependencies": {
"coveralls": "^3.0.1",
"koa": "^2.5.1",
"mocha": "^5.2.0",
"nyc": "^12.0.1",
"standard": "^11.0.1",
"supertest": "^3.1.0"
},
"standard": {
"globals": [
"describe",
"it",
"before",
"beforeEach",
"afterEach"
]
},
"dependencies": {
"exegesis": "^1.0.1"
}
}