mirror of
https://github.com/Expand-sys/ccashfrontend
synced 2025-12-19 08:02:15 +11:00
54 lines
1.5 KiB
JSON
54 lines
1.5 KiB
JSON
{
|
|
"name": "express-validator",
|
|
"description": "Express middleware for the validator module.",
|
|
"author": "Christoph Tavan <dev@tavan.de>",
|
|
"contributors": [
|
|
"Rusty Bailey <rustylbailey@gmail.com>",
|
|
"Gustavo Henke <guhenke@gmail.com>"
|
|
],
|
|
"version": "5.3.1",
|
|
"homepage": "https://express-validator.github.io",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/express-validator/express-validator.git"
|
|
},
|
|
"main": "./index.js",
|
|
"types": "./index.d.ts",
|
|
"scripts": {
|
|
"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",
|
|
"test": "nyc mocha && tsc",
|
|
"lint": "eslint lib test check filter",
|
|
"report-coverage": "cat coverage/lcov.info | coveralls",
|
|
"version": "npm run docs:version -- $npm_package_version && git add -A website"
|
|
},
|
|
"engines": {
|
|
"node": ">= 6.0.0"
|
|
},
|
|
"dependencies": {
|
|
"lodash": "^4.17.10",
|
|
"validator": "^10.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^4.11.1",
|
|
"chai": "^4.1.2",
|
|
"coveralls": "^3.0.0",
|
|
"docusaurus": "^1.5.1",
|
|
"eslint": "^4.19.1",
|
|
"mocha": "^5.1.1",
|
|
"nyc": "^13.0.1",
|
|
"typescript": "^2.8.3"
|
|
},
|
|
"keywords": [
|
|
"express",
|
|
"validator",
|
|
"validation",
|
|
"validate",
|
|
"sanitize",
|
|
"sanitization",
|
|
"xss"
|
|
]
|
|
}
|