-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
42 lines (42 loc) · 981 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
{
"name": "q-xhr",
"version": "1.1.0",
"description": "XMLHttpRequest (ajax) using powerful Q promises",
"author": "Nathan Black <[email protected]>",
"main": "q-xhr.js",
"repository": {
"type": "git",
"url": "https://github.com/nathanboktae/q-xhr.git"
},
"bugs": {
"url": "https://github.com/nathanboktae/q-xhr/issues"
},
"keywords": [
"q",
"xhr",
"ajax",
"promise",
"promises",
"deferred",
"xmlhttprequest"
],
"license": "MIT",
"devDependencies": {
"q": "latest",
"mocha": "~1.18.0",
"chai": "~1.8.1",
"chai-as-promised": "~4.1.0",
"sinon": "~1.7.3",
"sinon-chai": "~2.5.0",
"coffee-script": "~1.7.1",
"expect.js": "~0.3.1",
"es5-shim": "~2.3.0",
"grunt": "~0.4.2",
"grunt-cli": "~0.1.13",
"grunt-saucelabs": "latest",
"grunt-contrib-connect": "~0.7.1"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha -R spec && (grunt test || true)"
}
}