forked from naugtur/xhr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.08 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
{
"name": "xhr",
"version": "2.5.0",
"description": "small xhr abstraction",
"keywords": [
"xhr",
"http",
"xmlhttprequest",
"xhr2",
"browserify"
],
"author": "Raynos <[email protected]>",
"repository": "git://github.com/naugtur/xhr.git",
"main": "index",
"homepage": "https://github.com/naugtur/xhr",
"contributors": [
{
"name": "Jake Verbaten"
},
{
"name": "Zbyszek Tenerowicz",
"email": "[email protected]"
}
],
"bugs": {
"url": "https://github.com/naugtur/xhr/issues",
"email": "[email protected]"
},
"typings": "./index.d.ts",
"dependencies": {
"global": "~4.4.0",
"is-function": "^1.0.1",
"parse-headers": "^2.0.0",
"xtend": "^4.0.0"
},
"devDependencies": {
"for-each": "^0.3.2",
"pre-commit": "1.2.2",
"run-browser": "naugtur/run-browser",
"tap-spec": "^4.0.2",
"tape": "^4.0.0"
},
"license": "MIT",
"scripts": {
"test": "run-browser test/index.js -b -m test/mock-server.js | tap-spec",
"browser": "run-browser -m test/mock-server.js test/index.js"
}
}