-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
45 lines (45 loc) · 976 Bytes
/
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
{
"name": "nets",
"version": "3.2.0",
"description": "nothin but nets. http client that works in node and browsers",
"main": "index.js",
"scripts": {
"test": "standard && node test.js"
},
"author": "max ogden",
"license": "ISC",
"browser": {
"request": "xhr"
},
"dependencies": {
"request": "^2.65.0",
"xhr": "^2.1.0"
},
"devDependencies": {
"tape": "^2.13.1",
"standard": "^3.0.0-beta"
},
"repository": {
"type": "git",
"url": "https://github.com/maxogden/nets.git"
},
"bugs": {
"url": "https://github.com/maxogden/nets/issues"
},
"homepage": "https://github.com/maxogden/nets",
"testling": {
"files": "test.js",
"browsers": [
"ie/8..latest",
"firefox/17..latest",
"firefox/nightly",
"chrome/22..latest",
"chrome/canary",
"opera/12..latest",
"opera/next",
"safari/5.1..latest",
"ipad/6.0..latest",
"iphone/6.0..latest"
]
}
}