-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
57 lines (57 loc) · 1.31 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
{
"name": "xhr2",
"version": "0.2.1",
"description": "XMLHttpRequest emulation for node.js",
"keywords": [
"xhr",
"xmlhttprequest",
"ajax",
"browser"
],
"homepage": "https://github.com/pwnall/node-xhr2",
"author": "Victor Costan <[email protected]> (http://www.costan.us)",
"contributors": [
"Alexander Black <[email protected]>",
"Daniel Friedman <[email protected]>",
"Eugen Mayer <[email protected]>",
"Francois-Xavier Kowalski <[email protected]>",
"Sébastien Nicouleaud"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pwnall/node-xhr2.git"
},
"bugs": {
"url": "https://github.com/pwnall/node-xhr2/issues"
},
"engines": {
"node": ">= 6"
},
"dependencies": {},
"devDependencies": {
"async": ">=3.0.1",
"chai": ">=4.2.0",
"codo": ">=2.1.2",
"coffeescript": ">=2.4.1",
"express": ">=4.17.1",
"glob": ">=7.1.4",
"mocha": ">=6.1.4",
"open": ">=6.3.0",
"remove": ">= 0.1.5",
"sinon": ">=7.3.2",
"sinon-chai": ">=3.3.0"
},
"main": "lib/xhr2.js",
"browser": "lib/browser.js",
"directories": {
"doc": "doc",
"lib": "lib",
"src": "src",
"test": "test"
},
"scripts": {
"prepublish": "cake build",
"test": "cake test"
}
}