-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
57 lines (57 loc) · 1.23 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
{
"name": "@touch4it/sails-hook-validator",
"version": "2.3.0",
"description": "Validation hook for Sails.js requests",
"keywords": [
"sails-hook",
"sails",
"sails.js",
"hook",
"req-validator",
"request-validator",
"validator",
"validation",
"req-validation",
"request-validation"
],
"engines": {
"node": ">= 10.13.0",
"npm": ">= 6.4.1"
},
"dependencies": {
"validator": "^13.5.2"
},
"devDependencies": {
"eslint": "^7.22.0",
"eslint-config-touch4it": "^7.0.0",
"lodash": "^4.17.21",
"mocha": "^8.3.2",
"should": "^13.2.3"
},
"peerDependencies": {
"sails": "^1.0.0"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/touch4it/sails-hook-validator"
},
"sails": {
"isHook": true
},
"contributors": [
"Joseba Legarreta @josebaseba",
"Viktor Šulák <[email protected]>"
],
"private": false,
"license": "MIT",
"bugs": {
"url": "https://github.com/touch4it/sails-hook-validator/issues"
},
"homepage": "https://github.com/touch4it/sails-hook-validator",
"scripts": {
"lint": "eslint lib/*.js index.js",
"unit": "mocha",
"test": "npm run lint && npm run unit"
}
}