-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.31 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
{
"name": "koa-swagger-editor",
"version": "1.0.0",
"description": "A koa middleware, to serve api files and settings for swagger-editor",
"main": "lib/",
"scripts": {
"pretest": "if [ ! -d \"./swagger-editor\" ]; then wget https://github.com/swagger-api/swagger-editor/releases/download/v2.9.9/swagger-editor.zip; unzip swagger-editor.zip -d swagger-editor; rm swagger-editor.zip; fi ",
"test": "gulp test && nyc ava",
"report": "nyc report --reporter=html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cr4x/koa-swagger-editor.git"
},
"bugs": {
"url": "https://github.com/Cr4x/koa-swagger-editor/issues"
},
"homepage": "https://github.com/Cr4x/koa-swagger-editor",
"author": "Cr4x (https://github.com/Cr4x)",
"contributors": [
"Cr4x (https://github.com/Cr4x)"
],
"license": "MIT",
"ava": {
"files": [
"**/*.spec.js"
],
"failFast": true,
"verbose": true
},
"dependencies": {
"co-body": "^4.0.0",
"koa": "^1.2.0",
"koa-mount": "^1.3.0",
"koa-router": "^5.4.0",
"koa-static": "^2.0.0",
"lodash": "^4.6.1"
},
"devDependencies": {
"ava": "^0.13.0",
"co-supertest": "0.0.10",
"gulp": "^3.9.1",
"gulp-eslint": "^2.0.0",
"nyc": "^6.1.1",
"supertest": "^1.2.0",
"tempfile": "^1.1.1"
}
}