This repository has been archived by the owner on Sep 25, 2024. It is now read-only.
forked from express-validator/express-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.94 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
{
"name": "express-validator",
"description": "Express middleware for the validator module.",
"author": "Christoph Tavan <[email protected]>",
"contributors": [
"Rusty Bailey <[email protected]>",
"Gustavo Henke <[email protected]>"
],
"version": "6.4.0",
"homepage": "https://express-validator.github.io",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/express-validator/express-validator.git"
},
"main": "./src/index.js",
"types": "./src/index.d.ts",
"files": [
"docs",
"src",
"check",
"filter",
"!*.spec.ts",
"!*.ts",
"*.d.ts"
],
"scripts": {
"clean": "git clean -Xf src check filter",
"docs:build": "npm --prefix ./website run build",
"docs:publish": "USE_SSH=true CURRENT_BRANCH=master npm --prefix ./website run publish-gh-pages",
"docs:start": "npm --prefix ./website start",
"docs:version": "npm --prefix ./website run version",
"prepublishOnly": "tsc",
"test": "jest",
"lint": "eslint --ignore-path .gitignore 'src/**/*.ts'",
"report-coverage": "cat coverage/lcov.info | coveralls",
"version": "npm run docs:version -- $npm_package_version && npm run docs:build && git add -A website"
},
"engines": {
"node": ">= 8.0.0"
},
"dependencies": {
"lodash": "^4.17.15",
"validator": "^12.1.0"
},
"devDependencies": {
"@types/jest": "^24.9.1",
"@types/lodash": "^4.14.149",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"coveralls": "^3.0.9",
"docusaurus": "^1.14.4",
"eslint": "^5.16.0",
"eslint-config-prettier": "^5.1.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"ts-jest": "^24.3.0",
"typescript": "^3.7.5"
},
"keywords": [
"express",
"validator",
"validation",
"validate",
"sanitize",
"sanitization",
"xss"
]
}