UNPKG

portals

Version:

Client-side HTTP requests with middleware support.

66 lines (65 loc) 1.53 kB
{ "name": "portals", "version": "3.1.5", "description": "Client-side HTTP requests with middleware support.", "main": "dist/index.js", "jsnext:main": "dist/index.es.js", "typings": "dist/index.d.ts", "scripts": { "preversion": "npm test && npm run lint", "version": "npm run build", "postversion": "git push origin master && git push origin master --tags", "build": "rollup -c", "lint": "tslint -p ./", "watch": "rollup -cw", "test": "jest", "tdd": "jest --watch", "prepare": "npm test && rm -rf dist/ && npm run build" }, "repository": { "type": "git", "url": "git@github.com:HelpfulHuman/Portals.git" }, "keywords": [ "xhr", "ajax", "api", "services", "middleware", "client", "spa", "portals" ], "author": "Nick Glenn <nick@helpfulhuman.com>", "license": "MIT", "bugs": { "url": "https://github.com/HelpfulHuman/Portals/issues" }, "homepage": "https://github.com/HelpfulHuman/Portals", "devDependencies": { "@types/jest": "^21.1.10", "braces": "^2.3.2", "jest": "^24.1.0", "rollup": "^0.53.4", "rollup-plugin-typescript2": "^0.9.0", "rollup-watch": "^4.3.1", "ts-jest": "^24.0.0", "tslint": "^5.12.1", "typescript": "^2.9.2" }, "dependencies": {}, "jest": { "transform": { "^.+\\.tsx?$": "ts-jest" }, "testRegex": "\\.test\\.tsx?$", "moduleFileExtensions": [ "ts", "tsx", "js", "jsx", "json", "node" ] } }