-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 829 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 829 Bytes
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
{
"name": "json-schema-middleware",
"version": "1.0.3",
"description": "middleware to validate json schema",
"main": "index.js",
"scripts": {
"test": "standard && nyc tap test.js",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov"
},
"keywords": [
"json-schema",
"middleware"
],
"repository": "shipharbor/json-schema-middleware",
"author": "Irina Shestak",
"license": "MIT",
"dependencies": {
"boom": "^4.2.0",
"concat-stream": "^1.6.0",
"explain-error": "^1.0.3",
"fast-json-parse": "^1.0.2",
"is-my-json-valid": "^2.16.0"
},
"devDependencies": {
"dev-null": "^0.1.1",
"get-server-port": "^1.0.0",
"merry": "^4.7.2",
"nyc": "^10.1.2",
"request": "^2.80.0",
"standard": "^9.0.1",
"tap": "^10.3.0",
"tape": "^4.6.3"
}
}