-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
61 lines (61 loc) · 1.36 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
{
"name": "xhr-promise",
"version": "2.0.0",
"description": "Wrap the XMLHttpRequest object with Promise/A+ compliant promises.",
"author": {
"name": "Scott Brady",
"email": "[email protected]"
},
"keywords": [
"xmlhttprequest",
"xhr",
"promise",
"promises",
"promises-a",
"promises-aplus",
"async",
"deferred",
"deferreds",
"es6",
"es6-promise"
],
"repository": {
"type": "git",
"url": "git://github.com/scottbrady/xhr-promise"
},
"main": "./index.js",
"engines": {
"node": "*"
},
"license": {
"type": "MIT",
"url": "https://github.com/scottbrady/xhr-promise/blob/master/LICENSE"
},
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/scottbrady/xhr-promise/issues"
},
"homepage": "https://github.com/scottbrady/xhr-promise",
"dependencies": {
"object-assign": "^4.0.1",
"parse-headers": "~2.0.0",
"zousan": "^2.2.0"
},
"devDependencies": {
"coffee-script": "~1.10.0",
"coffeeify": "~1.2.0",
"grunt": "~0.4.5",
"grunt-browserify": "~4.0.1",
"grunt-cli": "~0.1.13",
"grunt-contrib-coffee": "~0.13.0",
"grunt-shell": "~1.1.1",
"mocha": "~2.3.4",
"mocha-phantomjs": "~4.0.1",
"should": "~7.1.1",
"zuul": "~3.7.3"
},
"scripts": {
"test": "grunt test",
"zuul": "zuul -- ./test/cases/*_test.js"
}
}