forked from zhengyhn/apidoc-plugin-class-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 821 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 821 Bytes
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
{
"name": "apidoc-plugin-class-validator",
"version": "0.0.3",
"description": "An apidoc plugin for class validator",
"main": "dist/index.js",
"dependencies": {
"ts-simple-ast": "^20.0.0"
},
"devDependencies": {
"@types/mocha": "^5.2.5",
"apidoc": "^0.17.7",
"apidoc-core": "^0.8.3",
"class-validator": "^0.9.1",
"mocha": "^5.2.0",
"should": "^13.2.3",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-klg": "^1.0.5"
},
"scripts": {
"build": "tsc -p .",
"doc": "./node_modules/.bin/apidoc -i test/src/ -o docs",
"test": "npm run build && mocha -bail --no-deprecation --compilers ts:ts-node/register -R spec -t 50000 -r should --recursive test/"
},
"author": "hank <yuanhang.zheng@qq.com> (http://zhengyhn.github.io)",
"license": "MIT"
}