UNPKG

proactive-http-fetch

Version:

Proactive http fetch package

84 lines (83 loc) 2.06 kB
{ "name": "proactive-http-fetch", "version": "0.1.0", "description": "Proactive http fetch package", "keywords": [ "proactive", "promidea", "http-fetch" ], "author": "Promidea IT", "license": "MIT", "main": "dist/http-fetch.js", "typings": "dist/http-fetch.d.ts", "scripts": { "lint": "tslint --project tsconfig.json", "pretest": "npm run lint", "test": "rimraf test/coverage-jest && jest", "prebuild": "rimraf dist", "build": "tsc --project tsconfig.json --outDir dist --module es2015 --target es2015" }, "devDependencies": { "@types/fetch-mock": "^5.12.2", "@types/jest": "20.0.4", "@types/node": "8.0.14", "aurelia-polyfills": "1.2.2", "aurelia-loader-nodejs": "1.0.1", "aurelia-pal-nodejs": "1.0.0-beta.1.0.0", "aurelia-testing": "1.0.0-beta.3.0.1", "cross-env": "^5.1.1", "cross-fetch": "^1.1.1", "fetch-mock": "^6.0.0", "jest": "20.0.4", "jest-cli": "20.0.4", "rimraf": "^2.6.2", "ts-jest": "20.0.7", "ts-node": "3.2.0", "ts-lint": "^4.5.1", "typescript": "2.4.1" }, "dependencies": { "aurelia-fetch-client": "1.1.2", "aurelia-event-aggregator": "^1.0.1" }, "jest": { "modulePaths": [ "<rootDir>/src", "<rootDir>/node_modules" ], "moduleFileExtensions": [ "js", "json", "ts" ], "transform": { "^.+\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js" }, "testRegex": "\\.spec\\.(ts|js)x?$", "setupFiles": [ "<rootDir>/test/jest-pretest.ts" ], "moduleNameMapper": { "aurelia-(.*)": "<rootDir>/node_modules/aurelia-$1" }, "collectCoverage": true, "collectCoverageFrom": [ "src/**/*.{js,ts}", "!**/*.spec.{js,ts}", "!**/node_modules/**", "!**/test/**" ], "coverageDirectory": "<rootDir>/test/coverage-jest", "coverageReporters": [ "json", "lcov", "text", "html" ], "mapCoverage": true }, "engines": { "node": ">= 6.0.0" } }