-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
91 lines (91 loc) · 2.49 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "express-joi-validation",
"version": "5.0.1",
"description": "validate express application inputs and parameters using joi",
"main": "express-joi-validation.js",
"scripts": {
"build-ts": "tsc --build example/typescript/tsconfig.json",
"unit": "mocha *.test.js",
"ts-test": "tsc express-joi-validation.d.ts --target es5 --module commonjs --noEmit",
"test": "npm run ts-test && npm run cover && nyc check-coverage --statements 100 --lines 100 --functions 100 --branches 100 && npm run build-ts",
"cover": "nyc --reporter=lcov --produce-source-map=true npm run unit",
"example": "nodemon example/javascript/server.js",
"example-ts": "npm run build-ts && node example/typescript/server.js",
"coveralls": "npm run cover && cat coverage/lcov.info | coveralls"
},
"typings": "express-joi-validation.d.ts",
"files": [
"express-joi-validation.js",
"express-joi-validation.d.ts"
],
"keywords": [
"joi",
"express",
"validation",
"middleware",
"typescript",
"tsc"
],
"author": "Evan Shortiss",
"license": "MIT",
"devDependencies": {
"@types/express": "~4.0.39",
"@types/express-formidable": "~1.0.4",
"@types/node": "~10.14.18",
"@types/qs": "~6.9.3",
"body-parser": "~1.18.3",
"chai": "~3.5.0",
"clear-require": "~2.0.0",
"coveralls": "~3.0.2",
"express": "~4.16.3",
"express-formidable": "~1.0.0",
"husky": "~1.0.1",
"joi": "~17.5.0",
"joi-extract-type": "~15.0.8",
"lint-staged": "~8.2.1",
"lodash": "~4.17.15",
"mocha": "~8.1.3",
"mocha-lcov-reporter": "~1.3.0",
"nodemon": "~2.0.4",
"nyc": "~15.1.0",
"prettier": "~1.14.3",
"proxyquire": "~1.7.11",
"qs": "~6.9.4",
"sinon": "~1.17.7",
"supertest": "~3.0.0",
"typescript": "~3.5.2"
},
"peerDependencies": {
"joi": "17"
},
"engines": {
"node": ">=10.0.0"
},
"directories": {
"example": "example"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/evanshortiss/express-joi-validation.git"
},
"bugs": {
"url": "https://github.com/evanshortiss/express-joi-validation/issues"
},
"homepage": "https://github.com/evanshortiss/express-joi-validation#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --no-semi --single-quote --write",
"git add"
],
"*.ts": [
"prettier --no-semi --single-quote --write",
"git add"
]
}
}