forked from Cody2333/koa-swagger-decorator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.67 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
91
{
"name": "koa-swagger-decorator",
"version": "1.6.1",
"description": "using decorator to automatically generate swagger doc for koa-router",
"main": "dist/index.js",
"dependencies": {
"@types/globby": "^8.0.0",
"@types/koa-router": "^7.0.31",
"@types/ramda": "^0.25.36",
"globby": "^8.0.1",
"is-type-of": "^1.2.0",
"koa-router": "^7.2.1",
"ramda": "^0.25.0"
},
"nyc": {
"include": [
"dist/**/*.js"
],
"exclude": [
"example/**/*.js",
"test/**/*.js"
]
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/koa": "^2.0.46",
"@types/koa-bodyparser": "^5.0.1",
"@types/mocha": "^5.2.5",
"@types/node": "^10.7.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-preset-env": "^1.7.0",
"chai": "^4.1.2",
"concurrently": "^3.6.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.14.0",
"intelli-espower-loader": "^1.0.1",
"koa": "^2.5.2",
"koa-bodyparser": "^4.2.1",
"koa-cors": "^0.0.16",
"koa-multer": "^1.0.2",
"koa-static": "^4.0.3",
"lodash": "^4.17.10",
"mocha": "^5.2.0",
"nodemon": "^1.18.3",
"nyc": "^12.0.2",
"power-assert": "^1.6.0",
"pre-commit": "^1.2.2",
"prettier-eslint-cli": "^4.7.1",
"sha1": "^1.1.1",
"supertest": "^2.0.1",
"ts-node": "^7.0.1",
"ts-node-dev": "^1.0.0-pre.26",
"tslint": "^5.11.0",
"typescript": "^2.9.2",
"url": "^0.11.0"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"start:babel": "babel-node example/main",
"watch:node": "nodemon --watch example --watch dist --exec npm run start:babel -L",
"watch:ts": "tsc -w -p tsconfig.json",
"start": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch:ts\" \"npm run watch:node\"",
"test": "./node_modules/mocha/bin/mocha -r babel-core/register test/**/*.js --bail -t 2000000",
"prepublish": "npm run build",
"lint": "eslint .",
"format": "prettier-eslint --write \"**/*.js\"",
"debug": "babel-node example/main --inspect-brk --nolazy example/main",
"cov": "nyc --reporter=lcov npm run test",
"add": "git add .",
"precommit-msg": "echo 'Pre-commit code formating...' && exit 0",
"tslint": "tslint -c tslint.json -p tsconfig.json"
},
"pre-commit": [
"precommit-msg",
"format",
"add"
],
"keywords": [
"decorator",
"swagger",
"koa",
"koa-router"
],
"author": "cody",
"license": "MIT",
"repository": "https://github.com/Cody2333/koa-swagger-decorator"
}