-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.05 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
{
"name": "feathers-hooks-yup",
"version": "1.0.1",
"description": "Feathers hook utility for schema validation and sanitization using YUP.",
"main": "js/index.js",
"typings": "js/index",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf -R js &&rimraf -R dist && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vasilevich/feathers-hooks-yup.git"
},
"dependencies": {
"yup": "^0.29.3"
},
"devDependencies": {
"@feathersjs/errors": "^4.5.8",
"@feathersjs/feathers": "^4.5.8",
"@types/yup": "^0.29.7",
"rimraf": "^2.6.2",
"ts-node-dev": "^1.0.0-pre.62",
"typescript": "^3.9.6",
"uglify-js": "^3.9.3"
},
"keywords": [
"typescript",
"feathers",
"yup",
"hooks",
"validation",
"validator",
"forms"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/vasilevich/feathers-hooks-yup/issues"
},
"homepage": "https://github.com/vasilevich/feathers-hooks-yup#readme"
}