-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
39 lines (39 loc) · 1 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
{
"name": "express-jsonschema",
"description": "Express middleware for jsonschema validation.",
"version": "1.1.5",
"author": "Adrian Adkison <[email protected]>",
"licenses": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/trainiac/express-jsonschema.git"
},
"keywords": [
"express",
"jsonschema",
"validation",
"validate"
],
"dependencies": {
"jsonschema": "^1.0.0"
},
"devDependencies": {
"body-parser": "^1.11.0",
"express": "^4.11.2",
"istanbul": "^0.3.5",
"merge": "^1.2.0",
"mocha": "^2.1.0",
"should": "^4.6.1",
"sinon": "^1.17.6",
"supertest": "^0.15.0"
},
"main": "./index.js",
"engines": {
"node": ">= 0.8"
},
"scripts": {
"test": "node_modules/.bin/mocha",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"
}
}