forked from feathersjs-ecosystem/validate-joi
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·50 lines (50 loc) · 1.31 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
{
"name": "feathers-hooks-joi",
"version": "1.0.0",
"description": "Feathers hook utility for schema validation, sanitization and client notification using Joi.",
"main": "index.js",
"scripts": {
"lint": "eslint --ext .js,.jsx .",
"test": "mocha --reporter spec",
"cover": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec test/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/logicwind/feathers-hooks-joi.git"
},
"keywords": [
"feathers",
"feathersjs",
"hook",
"hooks",
"validate",
"validation",
"joi"
],
"author": "Kajal Rana <kajal@logicwind.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/logicwind/feathers-hooks-joi/issues"
},
"homepage": "https://github.com/logicwind/feathers-hooks-joi#readme",
"dependencies": {
"@feathersjs/errors": "^3.2.2",
"@hapi/joi": "^15.1.1",
"feathers-hooks-common": "^4.3.0"
},
"devDependencies": {
"babel-eslint": "^8.2.1",
"chai": "3.5.0",
"coveralls": "2.11.9",
"eslint": "3.0.1",
"eslint-config-airbnb": "9.0.1",
"eslint-plugin-import": "1.10.2",
"eslint-plugin-jsx-a11y": "1.5.5",
"eslint-plugin-react": "5.2.2",
"istanbul": "0.4.4",
"mocha": "2.5.3"
},
"engines": {
"node": ">4.2.4"
}
}