-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
77 lines (77 loc) · 2.38 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "httpinvoke",
"version": "1.4.0",
"description": "A no-dependencies HTTP client library for browsers and Node.js with a promise-based or Node.js-style callback-based API to progress events, text and binary file upload and download, partial response body, request and response headers, status code.",
"license": "MIT",
"keywords": [
"http",
"client",
"promise",
"promises",
"promises-a",
"promises-aplus",
"deferred",
"future",
"async",
"ajax",
"request",
"xhr",
"connection",
"https",
"get",
"head",
"post",
"put",
"delete",
"download",
"upload",
"node",
"browser",
"ender",
"browserify",
"xmlhttprequest",
"web"
],
"main": "./httpinvoke-commonjs.js",
"private": false,
"dependencies": {},
"devDependencies": {
"surfboard": "0.1.x",
"promptly": "0.2.x",
"mime": "1.3.x",
"sizzle": "2.1.x",
"JSON2": "0.1.x",
"es5-shim": "4.1.x",
"grunt": "0.4.x",
"grunt-cli": "0.1.x",
"grunt-contrib-concat": "0.5.x",
"grunt-contrib-jshint": "0.11.x",
"grunt-mocha-test": "0.12.x",
"daemon": "1.1.x",
"mocha": "2.2.x",
"karma": "0.12.x",
"karma-mocha": "0.1.x",
"uglify-js": "2.4.x",
"cookie": "0.1.x"
},
"scripts": {
"test": "node ./dummyserver.js || exit 1;node ./node_modules/.bin/grunt test;E=$?;kill -9 $(cat ./dummyserver.pid);rm ./dummyserver.pid;exit $E",
"test-browser": "node ./node_modules/.bin/grunt compile && node ./dummyserver.js suggestopen && node ./node_modules/karma/bin/karma start;kill $(cat ./dummyserver.pid);rm ./dummyserver.pid",
"test-node": "node ./node_modules/.bin/grunt compile && node ./dummyserver.js && node ./node_modules/.bin/mocha --watch && kill $(cat ./dummyserver.pid) && rm ./dummyserver.pid",
"compile": "node ./node_modules/.bin/grunt compile && node ./node_modules/.bin/uglifyjs < httpinvoke-browser.js > httpinvoke-browser.min.js"
},
"homepage": "https://www.npmjs.org/package/httpinvoke",
"bugs": "https://github.com/jakutis/httpinvoke/issues",
"repository": {
"type": "git",
"url": "https://github.com/jakutis/httpinvoke"
},
"author": "Vytautas Jakutis <[email protected]> (https://jakut.is/)",
"contributors": [],
"engines": {
"node": "0.8 || 0.10 || 0.11 || 0.12"
},
"engineStrict": false,
"private": false,
"browser": "./httpinvoke-browser.js"
}