-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
39 lines (39 loc) · 937 Bytes
/
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
{
"name": "restify-joi-middleware",
"version": "5.0.0",
"description": "Simple joi middleware for restify.",
"main": "index.js",
"scripts": {
"pretest": "$(npm bin)/standard --verbose | $(npm bin)/snazzy",
"test": "$(npm bin)/jest"
},
"engineStrict": true,
"engines": {
"node": ">8.0.0"
},
"standard": {
"env": [
"jest"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/maxnachlinger/restify-joi-middleware.git"
},
"author": "Max Nachlinger <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/maxnachlinger/restify-joi-middleware/issues"
},
"homepage": "https://github.com/maxnachlinger/restify-joi-middleware#readme",
"dependencies": {
"joi": "^14.3.1",
"restify-errors": "^6.1.1"
},
"devDependencies": {
"jest": "^23.6.0",
"snazzy": "^8.0.0",
"standard": "^12.0.1",
"uuid": "^7.0.3"
}
}