forked from arb/celebrate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.47 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
{
"name": "celebrate",
"version": "10.0.1",
"description": "A joi validation middleware for Express.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "is-ci 'test:ci' 'test:local'",
"test:local": "jest --watch --verbose",
"test:ci": "jest --ci",
"benchmark": "node utils/benchmark",
"toc": "node utils/generate-toc",
"version": "npm run toc && git add README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arb/celebrate.git"
},
"keywords": [
"joi",
"validation",
"express",
"middleware"
],
"author": "Adam Bretz <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/arb/celebrate/issues"
},
"homepage": "https://github.com/arb/celebrate#readme",
"dependencies": {
"@hapi/joi": "15.x.x",
"escape-html": "1.0.3",
"lodash.get": "4.4.x"
},
"devDependencies": {
"@hapi/teamwork": "3.3.x",
"@types/express": "4.x.x",
"@types/hapi__joi": "15.x.x",
"artificial": "1.x.x",
"benchmark": "2.1.x",
"body-parser": "1.19.x",
"cookie-parser": "1.4.x",
"cookie-signature": "1.1.x",
"eslint": "6.x.x",
"eslint-config-airbnb-base": "14.x.x",
"eslint-plugin-import": "2.x.x",
"expect": "24.x.x",
"express": "next",
"faker": "4.1.x",
"is-ci-cli": "1.1.x",
"jest": "24.x.x",
"jest-runner-eslint": "0.7.x",
"markdown-toc": "1.2.x"
},
"engines": {
"node": ">=8.9.0"
}
}