UNPKG

1.58 kBJSONView Raw
1{
2 "name": "express-validator",
3 "description": "Express middleware for the validator module.",
4 "author": "Christoph Tavan <dev@tavan.de>",
5 "contributors": [
6 "Chris O'Hara <cohara87@gmail.com>",
7 "@orfaust",
8 "@zero21xxx",
9 "Roman Kalyakin <roman@kalyakin.com>",
10 "Rusty Bailey <rustylbailey@gmail.com>",
11 "Gustavo Henke <guhenke@gmail.com>",
12 "Ayman Nedjmeddine <theycallmethedr@gmail.com>"
13 ],
14 "version": "3.1.2",
15 "homepage": "https://github.com/ctavan/express-validator",
16 "license": "MIT",
17 "repository": {
18 "type": "git",
19 "url": "git://github.com/ctavan/express-validator.git"
20 },
21 "main": "./index.js",
22 "types": "./index.d.ts",
23 "scripts": {
24 "test": "nyc mocha && tsc",
25 "jshint": "jshint ./test ./lib",
26 "jscs": "jscs ./test ./lib",
27 "travis-build": "npm test && npm run jshint && npm run jscs",
28 "report-coverage": "cat coverage/lcov.info | coveralls"
29 },
30 "engines": {
31 "node": ">= 0.10"
32 },
33 "dependencies": {
34 "@types/bluebird": "~3.0.36",
35 "@types/express": "~4.0.34",
36 "bluebird": "^3.4.0",
37 "lodash": "^4.16.0",
38 "validator": "~6.2.0"
39 },
40 "devDependencies": {
41 "body-parser": "1.12.3",
42 "cookie-parser": "1.4.1",
43 "chai": "2.3.0",
44 "coveralls": "2.11.14",
45 "express": "4.12.3",
46 "jscs": "1.13.1",
47 "jshint": "2.7.0",
48 "mocha": "2.2.4",
49 "nyc": "8.4.0",
50 "supertest": "0.15.0",
51 "typescript": "~2.0.10"
52 },
53 "keywords": [
54 "express",
55 "validator",
56 "validation",
57 "validate",
58 "sanitize",
59 "sanitization",
60 "xss"
61 ]
62}