forked from freewil/express-form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.08 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
51
{
"author": "Dan Dean <@dandean> (http://dandean.com)",
"name": "express-form",
"description": "Form validation and data filtering for Express",
"version": "0.12.0",
"homepage": "http://dandean.github.com/express-form",
"repository": {
"type": "git",
"url": "git://github.com/freewil/express-form.git"
},
"contributors": [
"Marc Harter <[email protected]>",
"Sugarstack <@sugarstack>",
"Sean Lavine <[email protected]>"
],
"keywords": [
"form",
"validator",
"validation",
"express"
],
"dependencies": {
"validator": "0.4.x",
"object-additions": ">= 0.5.0",
"async": "~0.2.9"
},
"peerDependencies": {
"express": "3.x"
},
"devDependencies": {
"mocha": "~1.13.0",
"express": "3.x",
"request": "~2.27.0"
},
"main": "index",
"bugs": {
"url": "http://github.com/freewil/express-form/issues"
},
"scripts": {
"test": "mocha"
},
"engines": {
"node": ">=0.8.0"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/freewil/express-form/raw/master/LICENSE"
}
]
}