-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.71 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
{
"name": "xpress-req-validator",
"version": "1.0.0",
"description": "hassle free request validation middleware",
"main": "index.js",
"author": "IamThilina",
"license": "MIT",
"homepage": "https://github.com/IamThilina/xpress-req-validator",
"keywords": [
"request validation",
"middleware",
"validation middleware",
"Joi validation middleware",
"express request validation",
"Joi schema validation"
],
"bugs": "https://github.com/IamThilina/xpress-req-validator/issues",
"email": "333thilina@gmail.com",
"repository": {
"type": "git",
"url": "https://github.com/IamThilina/xpress-req-validator.git"
},
"scripts": {
"test": "jest --coverage lib/**/*.test.js",
"coverage": "jest lib/**/*.test.js --coverage --coverageReporters=text-lcov | coveralls",
"eslint": "eslint 'lib/**/*.js'",
"eslint-fix": "eslint 'lib/**/*.js' --fix",
"prettier": "prettier --config ./.prettierrc --write 'lib/**/*.js'",
"build": "npx gulp release-build"
},
"pre-commit": [
"eslint-fix",
"prettier",
"test"
],
"pre-push": [],
"dependencies": {
"joi": "^14.3.1",
"path-to-regexp": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"coveralls": "^3.0.2",
"eslint": "^5.13.0",
"eslint-config-prettier": "^4.0.0",
"gulp": "^4.0.0",
"gulp-babel": "^8.0.0",
"gulp-sourcemaps": "^2.6.4",
"jest": "^24.1.0",
"pre-commit": "^1.2.2",
"pre-push": "^0.1.1",
"prettier": "^1.16.4"
}
}