forked from johnhof/swagger-injector
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
72 lines (72 loc) · 2.01 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
{
"name": "koa2-swagger-ui",
"version": "0.0.0-placeholder",
"description": "Swagger UI middleware for koa",
"main": "./index.js",
"typings": "./index.d.ts",
"scripts": {
"start": "ts-node test/example.ts",
"lint": "eslint lib/**/*.ts test/**/*.ts",
"lint:fix": "eslint --fix lib/**/*.ts test/**/*.ts",
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.json",
"postbuild": "cp lib/index.hbs dist && cp lib/favicon-32x32.png dist && cp lib/favicon-16x16.png dist && cp package.json dist && cp LICENSE dist && cp README.md dist",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "npm run test -- --coverage --no-cache",
"semantic-release": "cd dist && semantic-release"
},
"dependencies": {
"@types/koa": "^2.0.48",
"handlebars": "^4.1.2",
"lodash": "^4.17.11",
"read-pkg-up": "^5.0.0"
},
"peerDependencies": {
"koa": "^2.7.0"
},
"devDependencies": {
"@types/jest": "24.0.12",
"@types/koa-router": "7.0.40",
"@types/lodash": "4.14.123",
"@types/node": "11.13.9",
"@types/read-pkg-up": "3.0.1",
"@types/supertest": "2.0.7",
"@typescript-eslint/eslint-plugin": "1.7.0",
"@typescript-eslint/parser": "1.7.0",
"eslint": "5.16.0",
"eslint-config-prettier": "4.2.0",
"eslint-config-xo-space": "0.21.0",
"eslint-config-xo-typescript": "0.10.1",
"eslint-plugin-import": "2.17.2",
"jest": "24.7.1",
"koa": "2.7.0",
"koa-router": "7.4.0",
"microbundle": "0.11.0",
"rimraf": "2.6.3",
"semantic-release": "15.13.3",
"supertest": "4.0.2",
"swagger-ui-dist": "3.22.1",
"ts-jest": "24.0.2",
"ts-node": "8.1.0",
"typescript": "3.4.5"
},
"release": {
"branch": "master"
},
"jest": {
"preset": "ts-jest",
"collectCoverage": true
},
"homepage": "https://github.com/scttcper/koa2-swagger-ui",
"repository": "scttcper/koa2-swagger-ui",
"keywords": [
"swagger",
"docs",
"swagger-ui",
"koa",
"koa2",
"middleware"
],
"license": "MIT"
}