UNPKG

1.76 kBJSONView Raw
1{
2 "name": "node-input-validator",
3 "version": "4.2.0",
4 "description": "validation library for nodejs, inspired by laravel.",
5 "main": "lib/index.js",
6 "scripts": {
7 "lint": "./node_modules/.bin/eslint .",
8 "lintf": "./node_modules/.bin/eslint . --fix",
9 "test": "mocha --recursive",
10 "coverage": "nyc --reporter=lcov npm run test",
11 "report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
12 },
13 "engines": {
14 "node": ">=8.16"
15 },
16 "keywords": [
17 "validation",
18 "validator",
19 "data validation",
20 "input validation",
21 "input validator",
22 "form validation",
23 "form validator",
24 "node validator",
25 "laravel",
26 "validator for js",
27 "koa",
28 "express",
29 "file validation",
30 "image",
31 "mimes"
32 ],
33 "repository": "bitnbytesio/node-input-validator",
34 "author": {
35 "name": "Harcharan Singh",
36 "email": "bitnbytesio@gmail.com"
37 },
38 "contributors": [
39 {
40 "name": "Jakub Nietrzeba",
41 "url": "https://github.com/gluth"
42 },
43 {
44 "name": "Sergi Baños",
45 "url": "https://github.com/SergiBanos"
46 },
47 {
48 "name": "Nitin Mehra",
49 "url": "https://github.com/cybersultan"
50 }
51 ],
52 "license": "ISC",
53 "devDependencies": {
54 "@types/mocha": "^5.2.7",
55 "@types/moment": "^2.13.0",
56 "@types/node": "^12.12.26",
57 "@types/validator": "^10.11.3",
58 "eslint": "^6.8.0",
59 "eslint-config-airbnb-base": "^14.0.0",
60 "eslint-plugin-import": "^2.20.1",
61 "mocha": "^6.2.2",
62 "nyc": "^14.1.1",
63 "should": "^13.2.3"
64 },
65 "dependencies": {
66 "file-type": "^12.4.2",
67 "image-size": "^0.8.3",
68 "mime-types": "^2.1.26",
69 "moment": "^2.24.0",
70 "read-chunk": "^3.2.0",
71 "validator": "^12.2.0"
72 }
73}