-
Notifications
You must be signed in to change notification settings - Fork 167
/
package.json
86 lines (86 loc) · 2.35 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "forms",
"version": "1.3.2",
"description": "An easy way to create, parse, and validate forms",
"main": "./lib/forms",
"author": "Caolan McMahon",
"contributors": [
{
"name": "Caolan McMahon",
"email": "[email protected]"
},
{
"name": "Jordan Harband",
"email": "[email protected]",
"url": "http://ljharb.codes"
}
],
"repository": {
"type": "git",
"url": "https://github.com/caolan/forms.git"
},
"bugs": {
"url": "https://github.com/caolan/forms/issues"
},
"scripts": {
"prepublishOnly": "safe-publish-latest",
"prepublish": "not-in-publish || npm run prepublishOnly",
"pretest": "npm run lint",
"test": "npm run tests-only",
"tests-only": "nyc tape test/**/*.js",
"posttest": "aud --production",
"prelint": "evalmd *.md",
"lint": "eslint --ext=js,mjs ."
},
"dependencies": {
"array.prototype.every": "^1.1.5",
"array.prototype.some": "^1.1.5",
"async": "^2.6.4",
"email-addresses": "^4.0.0",
"formidable": "^1.2.6",
"is": "^3.3.0",
"object-keys": "^1.1.1",
"object.assign": "^4.1.5",
"qs": "^6.12.0",
"reduce": "^1.0.2",
"string.prototype.trim": "^1.2.8"
},
"devDependencies": {
"@ljharb/eslint-config": "^21.1.0",
"aud": "^1.1.5",
"eslint": "=8.8.0",
"evalmd": "^0.0.19",
"nyc": "^10.3.2",
"safe-publish-latest": "^2.0.0",
"tape": "^5.7.5",
"tape-dom": "^0.0.12"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/caolan/forms/raw/master/LICENSE"
}
],
"testling": {
"files": "test-browser.js",
"browsers": [
"iexplore/6..latest",
"firefox/3..10",
"firefox/15..latest",
"firefox/nightly",
"chrome/4..10",
"chrome/23..latest",
"chrome/canary",
"opera/10..latest",
"opera/next",
"safari/5.0.5..latest",
"ipad/6.0..latest",
"iphone/6.0..latest",
"android-browser/4.2"
]
},
"engines": {
"node": ">= 0.4"
}
}