UNPKG

@fosenu/httpclient

Version:

A HTTP-client written in typescript, using native node.js library

59 lines (58 loc) 1.23 kB
{ "name": "@fosenu/httpclient", "version": "0.1.4", "description": "A HTTP-client written in typescript, using native node.js library", "main": "build/Client.js", "types": "./build/Client.d.ts", "scripts": { "prepublish": "npm run build", "build": "tsc", "test": "nyc mocha" }, "keywords": [ "http", "https", "http-client", "https-client" ], "repository": { "type": "git", "url": "git+https://github.com/fosenutvikling/httpclient.git" }, "author": "Jonas Kirkemyr", "license": "MIT", "devDependencies": { "@types/chai": "^4.1.7", "@types/chai-spies": "1.0.0", "@types/mocha": "^5.2.5", "@types/node": "^10.12.18", "chai": "^4.2.0", "chai-spies": "^1.0.0", "mocha": "^5.2.0", "mock-http-server": "^1.2.0", "nyc": "^13.1.0", "source-map-support": "^0.5.9", "ts-node": "^7.0.1", "tslint": "^5.12.0", "typescript": "^3.2.2" }, "nyc": { "include": [ "src/**/*.ts", "src/**/*.tsx" ], "extension": [ ".ts", ".tsx" ], "require": [ "ts-node/register" ], "reporter": [ "text-summary", "html" ], "sourceMap": true, "instrument": true } }