UNPKG

838 BJSONView Raw
1{
2 "name": "go-fetch",
3 "version": "3.0.0",
4 "description": "A pluggable HTTP client.",
5 "keywords": [
6 "http",
7 "https",
8 "request",
9 "response",
10 "client",
11 "fetch",
12 "get",
13 "post",
14 "plugin",
15 "middleware",
16 "promise"
17 ],
18 "main": "./lib/Client.js",
19 "repository": {
20 "type": "git",
21 "url": "git@github.com:go-fetch-js/go-fetch.git"
22 },
23 "dependencies": {
24 "no-frills-request": "^1.1.0",
25 "ware": "^1.3.0"
26 },
27 "devDependencies": {
28 "chai": "^3.5.0",
29 "simple-server-setup": "^0.2.0",
30 "streamifier": "^0.1.1"
31 },
32 "scripts": {
33 "test:unit": "mocha --require ./tests/setup.js ./lib/**/*.test.js",
34 "test:integration": "mocha --require ./tests/setup.js ./tests/**/*.test.js",
35 "test": "npm run test:unit && npm run test:integration"
36 },
37 "license": "MIT"
38}