-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.1 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
{
"name": "express-validate",
"description": "A very simple Express middleware to validate stuff.",
"contributors": [
{
"name": "Maciej Pawlowski",
"email": "[email protected]"
},
{
"name": "Bartlomiej Kubiak",
"email": "[email protected]"
}
],
"version": "0.2.1",
"homepage": "https://github.com/livechat/express-validate",
"repository": {
"type": "git",
"url": "git://github.com/livechat/express-validate.git"
},
"main": "./index.js",
"scripts": {
"test": "mocha",
"prettier": "prettier --write \"**/*.{js,md,json}\"",
"eslint": "eslint ."
},
"engines": {
"node": "*"
},
"dependencies": {
"underscore": "1.13.1"
},
"devDependencies": {
"eslint": "8.28.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-n": "15.5.1",
"eslint-plugin-promise": "6.1.1",
"express": "4.18.2",
"mocha": "10.3.0",
"prettier": "2.8.0",
"should": "1.3.0"
},
"keywords": [
"express",
"validate",
"validation",
"middleware"
],
"license": "MIT"
}