-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
67 lines (67 loc) · 1.58 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "express-json-validator-middleware",
"version": "3.0.1",
"description": "An Express middleware to validate requests against JSON Schemas",
"main": "src/index.js",
"author": "Simon Plenderleith",
"license": "MIT",
"keywords": [
"express",
"json",
"validate",
"validation",
"validator"
],
"repository": {
"type": "git",
"url": "git+https://github.com/simonplend/express-json-validator-middleware.git"
},
"bugs": {
"url": "https://github.com/simonplend/express-json-validator-middleware/issues"
},
"homepage": "https://github.com/simonplend/express-json-validator-middleware#readme",
"scripts": {
"test": "npm run test:unit && npm run test:types",
"test:unit": "tap",
"test:types": "tsc --noEmit --strict src/index.d.ts",
"lint": "eslint \"src/*.js\" --fix",
"prepush": "npm run lint && npm run test",
"prepublish": "npm run lint && npm run test"
},
"types": "src/index.d.ts",
"devDependencies": {
"codecov": "^3.8.1",
"eslint": "^6.8.0",
"eslint-config-google": "^0.9.1",
"express": "^4.16.4",
"husky": "^0.14.3",
"lint-staged": "^10.0.8",
"mocha": "^7.1.1",
"prettier": "^1.19.1",
"simple-get": "^4.0.0",
"tap": "^15.1.5",
"typescript": "^4.6.4"
},
"dependencies": {
"@types/express": "^4.17.3",
"@types/express-serve-static-core": "^4.17.2",
"@types/json-schema": "^7.0.4",
"ajv": "^8.11.0"
},
"engines": {
"node": ">=14"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
},
"files": [
"src/*.js",
"src/*.d.ts"
]
}