-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.09 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
{
"name": "@spksoft/koa-validator-decorator",
"version": "1.0.1",
"description": "koa-validator-decorator is a ES6 validator decorator by using validator core from yup",
"main": "./distribution/index.js",
"scripts": {
"clean": "rm -rf distribution && mkdir distribution",
"build": "npm run clean && babel -d ./distribution ./src -s",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"koa",
"validator",
"validation",
"middleware",
"spksoft",
"yup"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spksoft/koa-validator-decorator.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/spksoft/koa-validator-decorator/issues"
},
"homepage": "https://github.com/spksoft/koa-validator-decorator#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-0": "^6.24.1"
},
"dependencies": {
"yup": "^0.24.1"
}
}