-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
74 lines (74 loc) · 1.98 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "feathers-validate-joi",
"version": "4.0.1",
"description": "Feathers hook utility for schema validation, sanitization, and client notification using Joi.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"lint": "eslint --fix --ext .js,.jsx .",
"lint:ci": "eslint --ext .js,.jsx .",
"test": "mocha --reporter spec",
"cover": "nyc npm run test",
"publish": "git push origin --tags && git push origin",
"release:pre": "npm version prerelease && npm publish --tag pre",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish"
},
"engines": {
"node": ">=10.0.0"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/feathersjs-ecosystem/validate-joi.git"
},
"keywords": [
"feathers",
"feathersjs",
"hook",
"hooks",
"validate",
"validation",
"joi"
],
"author": "John Szwaronek <[email protected]>",
"contributors": [
"Luis A. Salas <[email protected]>",
"Marshall Thompson <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/feathersjs-ecosystem/validate-joi/issues"
},
"homepage": "https://github.com/feathersjs-ecosystem/validate-joi#readme",
"dependencies": {
"@feathersjs/errors": "^4.5.11",
"feathers-hooks-common": "^5.0.2",
"joi": "^17.3.0",
"joi-errors-for-forms": "^0.2.2",
"lodash": "^4.17.15"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"chai": "^4.2.0",
"coveralls": "^3.0.9",
"eslint": "^7.16.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"mocha": "^8.2.1",
"mongodb": "^3.5.5",
"nyc": "^15.1.0"
},
"nyc": {
"reporter": [
"text",
"lcov"
],
"sourceMap": true
}
}