-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
74 lines (74 loc) · 2.03 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
{
"name": "requests",
"version": "0.3.0",
"description": "An streaming XHR abstraction that works in browsers and node.js",
"main": "index.js",
"scripts": {
"100%": "istanbul check-coverage --statements 100 --functions 100 --lines 100 --branches 100",
"wd": "node test/index.js --wd",
"test": "node test/index.js",
"static": "node test/static.js",
"node": "mocha test/requests.test.js",
"watch": "mocha --watch ./test/requests.test.js",
"all": "npm run test && npm run node",
"coverage": "istanbul cover ./node_modules/.bin/_mocha -- test/requests.test.js",
"test-node": "istanbul cover node_modules/.bin/_mocha --report lcovonly -- test/requests.test.js",
"compile": "mkdir -p dist && browserify browser.js -o dist/requests.js --standalone Requests",
"pre-publish": "npm run compile",
"start": "node test/development.js"
},
"repository": {
"type": "git",
"url": "https://github.com/unshiftio/requests"
},
"keywords": [
"request",
"xhr",
"requests",
"http",
"xml",
"xmlhttp",
"xmlhttprequest"
],
"author": "Arnout Kazemier",
"license": "MIT",
"bugs": {
"url": "https://github.com/unshiftio/requests/issues"
},
"homepage": "https://github.com/unshiftio/requests",
"dependencies": {
"axo": "0.0.x",
"eventemitter3": "~4.0.0",
"extendible": "0.1.x",
"hang": "1.0.x",
"loads": "0.0.x",
"node-http-xhr": "~1.3.0",
"xhr-send": "1.0.x"
},
"devDependencies": {
"argh": "0.1.x",
"assume": "~2.0.0",
"async-each": "~1.0.1",
"browserify": "^16.0.0",
"http-proxy": "~1.17.0",
"istanbul": "~0.4.5",
"mocha": "~3.5.0",
"mochify": "~2.18.1",
"pre-commit": "~1.2.0",
"setheader": "~1.0.0"
},
"testling": {
"files": "test/*.browser.js",
"harness": "mocha-bdd",
"browsers": [
"ie/6..latest",
"chrome/22..latest",
"firefox/16..latest",
"safari/latest",
"opera/11.0..latest",
"iphone/latest",
"ipad/latest",
"android-browser/latest"
]
}
}