-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.44 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
{
"name": "@korbiniankuhn/validator",
"version": "1.1.14",
"description": "Validate object schemas for js, expressjs, angular and mongoose.",
"main": "index.js",
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint *.js src/. test/.",
"lint:fix": "eslint *.js src/. test/. --fix",
"build": "webpack",
"prepublish": "npm run build",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KorbinianKuhn/validator.git"
},
"keywords": [
"express",
"validator",
"validation",
"security",
"parser",
"async",
"await",
"promise",
"angular",
"mongoose"
],
"author": "Korbinian Kuhn",
"license": "MIT",
"bugs": {
"url": "https://github.com/KorbinianKuhn/validator/issues"
},
"homepage": "https://github.com/KorbinianKuhn/validator#readme",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"coveralls": "^3.0.2",
"eslint": "^5.8.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-prettier": "^3.0.0",
"husky": "^1.1.3",
"jest": "^23.6.0",
"lint-staged": "^8.0.4",
"prettier": "^1.14.3",
"webpack": "^4.23.1",
"webpack-cli": "^3.1.2",
"moment": "^2.22.2"
},
"lint-staged": {
"*.{js}": [
"eslint",
"git add"
]
},
"dependencies": {}
}