-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 919 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
{
"name": "@iondrive/validation-middleware",
"description": "A JSON Schema validation middleware",
"version": "0.0.6",
"author": "Ben Shepheard <[email protected]>",
"license": "MIT",
"repository": "iondrive/validator-middleware",
"main": "./lib/validator.js",
"typescript": {
"definition": "./definition/validator.d.ts"
},
"dependencies": {
"is-my-json-valid": "^2.12.0"
},
"devDependencies": {
"@iondrive/supertest": "^1.0.3",
"body-parser": "^1.12.4",
"express": "^4.12.4",
"mocha": "^2.2.4",
"ts-globber": "^0.3.1",
"typescript": "^1.5.0-beta"
},
"engines": {
"node": ">=0.12.0"
},
"files": [
"LICENSE",
"README.md",
"lib/",
"definition/"
],
"scripts": {
"build": "tsglob && tsc",
"prepublish": "npm run build",
"test": "mocha --reporter spec --check-leaks test/",
"test-ci": "npm run build && npm test"
}
}