-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
55 lines (55 loc) · 1.27 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
{
"name": "httpplease",
"version": "0.16.4",
"description": "The polite HTTP request library for node and the browser",
"main": "./lib/index.js",
"browser": {
"./lib/xhr.js": "./lib/xhr-browser.js"
},
"directories": {
"test": "test"
},
"dependencies": {
"xmlhttprequest": "*",
"urllite": "~0.5.0",
"xtend": "~3.0.0"
},
"devDependencies": {
"browserify": "~3.44.2",
"chai": "~1.9.1",
"cors": "~2.2.0",
"eslint": "^0.21.0",
"express": "~4.0.0",
"grunt": "~0.4.4",
"grunt-browserify": "^3.1.0",
"grunt-bump": "0.0.13",
"grunt-cli": "~0.1.13",
"grunt-contrib-connect": "~0.7.1",
"grunt-contrib-uglify": "~0.4.0",
"grunt-contrib-watch": "~0.6.1",
"grunt-express": "~1.2.1",
"grunt-mocha": "~0.4.10",
"grunt-mocha-test": "~0.10.2",
"mocha": "~1.18.2"
},
"scripts": {
"prepublish": "grunt build",
"test": "grunt test"
},
"repository": {
"type": "git",
"url": "git://github.com/matthewwithanm/httpplease.js.git"
},
"keywords": [
"xhr",
"request",
"http",
"XMLHttpRequest",
"isomorphic"
],
"author": "Matthew Dapena-Tretter <m@tthewwithanm.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/matthewwithanm/httpplease.js/issues"
}
}