forked from caolan/forms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.25 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
{
"name": "forms",
"version": "1.3.1",
"description": "An easy way to create, parse, and validate forms",
"main": "./index",
"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": {
"pretest": "npm run lint",
"test": "npm run tests-only",
"tests-only": "tape test/*.js",
"posttest": "npx aud",
"coverage": "covert test/*.js",
"coverage-quiet": "covert --quiet test/*.js",
"prelint": "evalmd *.md",
"lint": "eslint test/*.js lib/*.js example/simple.js example/complex.js"
},
"dependencies": {
"array.prototype.every": "^1.0.0",
"array.prototype.some": "^1.0.0",
"async": "^2.6.2",
"formidable": "^1.2.1",
"is": "^3.3.0",
"object-keys": "^1.1.1",
"object.assign": "^4.1.0",
"qs": "^6.7.0",
"reduce": "^1.0.2",
"string.prototype.trim": "^1.1.2"
},
"devDependencies": {
"@ljharb/eslint-config": "^12.2.1",
"covert": "^1.1.1",
"eslint": "^4.19.1",
"evalmd": "^0.0.17",
"tape": "^4.10.1",
"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"
}
}