-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.31 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
{
"name": "@expresso/validator",
"version": "1.1.7",
"description": "JSON Schema route validation middleware for Expresso",
"main": "dist/validator.js",
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"build:clean": "npm run clean && npm run build",
"build:watch": "tsc -w",
"lint": "tslint --project tsconfig.json",
"prepare": "npm run build:clean",
"postpublish": "npm run clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/expresso/validator.git"
},
"keywords": [
"expresso",
"json-schema",
"validation",
"express"
],
"author": "Lucas Santos <hello@lsantos.dev>",
"license": "MIT",
"bugs": {
"url": "https://github.com/expresso/validator/issues"
},
"homepage": "https://github.com/expresso/validator#readme",
"dependencies": {
"@hapi/boom": "^9.1.0",
"ajv": "6.12.3",
"typescript-json-schema": "0.42.0"
},
"devDependencies": {
"@types/boom": "^7.3.0",
"@types/express": "^4.17.9",
"@types/node": "^14.14.9",
"husky": "^4.3.0",
"standard": "^16.0.3",
"tslint": "^6.1.3",
"tslint-config-standard": "^9.0.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^4.1.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"files": [
"dist/**/*"
]
}