-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
52 lines (52 loc) · 1.45 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
{
"name": "is-express-schema-valid",
"version": "1.0.3",
"description": "Express.js middleware that validates body, params, query of request according to JSONSchema and is extremely fast",
"main": "index.js",
"scripts": {
"build": "babel src/is-express-schema-valid.js --out-file index.js",
"prepublish": "npm run build",
"test": "mocha ./test",
"lint": "eslint ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/voronianski/is-express-schema-valid.git"
},
"keywords": [
"express.js",
"json",
"schema",
"validate",
"middleware",
"endpoints",
"api"
],
"author": "Dmitri Voronianski <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/voronianski/is-express-schema-valid/issues"
},
"homepage": "https://github.com/voronianski/is-express-schema-valid#readme",
"dependencies": {
"error-class": "^2.0.0",
"is-my-schema-valid": "^1.0.3"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-eslint": "^6.0.0",
"babel-plugin-transform-object-assign": "^6.5.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.7.2",
"body-parser": "^1.13.1",
"chai": "^3.0.0",
"eslint": "^2.5.3",
"eslint-config-airbnb": "^6.1.0",
"estraverse": "^4.2.0",
"estraverse-fb": "^1.3.1",
"express": "^4.13.0",
"mocha": "^2.2.5",
"supertest": "^1.0.1"
}
}