forked from caolan/forms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (65 loc) · 1.79 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
{
"name": "forms",
"description": "An easy way to create, parse, and validate forms",
"main": "./index",
"author": "Caolan McMahon",
"version": "1.1.2",
"repository": {
"type": "git",
"url": "https://github.com/caolan/forms.git"
},
"bugs": {
"url": "https://github.com/caolan/forms/issues"
},
"scripts": {
"test": "npm run lint && tape test/*.js",
"test-browser": "testling",
"coverage": "covert test/*.js",
"coverage-quiet": "covert --quiet test/*.js",
"lint": "npm run jscs && npm run eslint",
"eslint": "eslint test/*.js lib/*.js example/simple.js example/complex.js",
"jscs": "jscs test/*.js lib/*.js example/simple.js example/complex.js"
},
"dependencies": {
"async": "^1.2.1",
"qs": "^3.1.0",
"formidable": "^1.0.17",
"is": "^3.0.1",
"object.assign": "^3.0.0"
},
"devDependencies": {
"tape": "^4.0.0",
"testling": "^1.7.1",
"covert": "^1.1.0",
"jscs": "^1.13.1",
"eslint": "^0.23.0"
},
"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"
}
}