forked from caolan/forms
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (53 loc) · 1.44 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
{
"name": "forms",
"description": "An easy way to create, parse, and validate forms",
"main": "./index",
"author": "Caolan McMahon",
"version": "0.2.3",
"repository": {
"type": "git",
"url": "http://github.com/caolan/forms.git"
},
"bugs": {
"url": "http://github.com/caolan/forms/issues"
},
"scripts": {
"test": "node test.js",
"test-browser": "./node_modules/.bin/browserify test-browser.js | ./node_modules/.bin/testling"
},
"dependencies": {
"async": "~0.2.9",
"qs": "~0.6.5"
},
"devDependencies": {
"nodeunit": "~0.8.1",
"testling": "~1.5.1",
"browserify": "~2.29.0",
"nodeunit-browser-tap": "~0.0.3"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/caolan/forms/raw/master/LICENSE"
}
],
"testling": {
"scripts": "node_modules/nodeunit-browser-tap/lib/nodeunit.js",
"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"
]
}
}