forked from dandean/express-form
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 975 Bytes
/
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
{
"name": "express-form2",
"version": "2.0.0",
"description": "Form validation and data filtering for Express",
"keywords": [
"form",
"validator",
"validation",
"coke",
"express"
],
"author": "Dan Dean <@dandean> (http://dandean.com)",
"dependencies": {
"inflection" : "2.0.1",
"node.extend": "2.0.2",
"validator" : "2.1.0"
},
"devDependencies": {
"body-parser" : "1.20.2",
"express" : "4.18.2",
"mocha" : "10.2.0",
"supertest" : "6.3.3"
},
"scripts": {
"test": "mocha test"
},
"repository": {
"type": "git",
"url": "https://github.com/dreamerslab/express-form.git"
},
"contributors": [
"dreamerslab <[email protected]>",
"Marc Harter <[email protected]>",
"Sugarstack <@sugarstack>"
],
"main": "index",
"engines": [
"node >= 0.6.0"
],
"licenses": [
{
"type": "MIT",
"url": "http://en.wikipedia.org/wiki/MIT_License"
}
]
}