UNPKG

rest-api-remapper

Version:

mapping uri and response props of rest api

67 lines (66 loc) 1.71 kB
{ "name": "rest-api-remapper", "version": "0.2.6", "description": "mapping uri and response props of rest api", "main": "dist/index.js", "types": "src/index.d.ts", "scripts": { "test": "jest", "prepare": "tsc src/*.ts --outDir dist", "build": "tsc src/*.ts --outDir dist", "lint": "tslint 'src/**/*.ts'", "lintfix": "tslint 'src/**/*.ts' --fix", "tslint-check": "tslint-config-prettier-check ./tslint.json", "release": "yarn test && standard-version && git push --follow-tags && npm publish" }, "repository": { "type": "git", "url": "git+ssh://git@github.com/yahsan2/rest-api-remapper.git" }, "keywords": [ "rest-api", "api-mapping", "api-wrapper" ], "author": "Ryosuke Miyamoto <yahsan2@gmail.com> (https://github.com/yahsan2)", "bugs": { "url": "https://github.com/yahsan2/rest-api-remapper/issues" }, "homepage": "https://github.com/yahsan2/rest-api-remapper#readme", "license": "MIT", "dependencies": { "axios": "^0.21.1" }, "jest": { "moduleFileExtensions": [ "ts", "js" ], "moduleNameMapper": { "^~/(.+)": "<rootDir>/src/$1" }, "transform": { "^.+\\.ts$": "ts-jest" }, "globals": { "ts-jest": { "tsConfig": "tsconfig.json" } }, "testMatch": [ "**/__tests__/src/**/*.test.ts" ] }, "devDependencies": { "@types/jest": "^24.0.13", "@types/node": "^12.0.7", "jest": "^24.8.0", "prettier": "^1.18.2", "standard-version": "^8.0.1", "ts-jest": "^24.0.2", "tslint": "^5.17.0", "tslint-config-prettier": "^1.18.0", "tslint-plugin-prettier": "^2.0.1", "typescript": "^3.5.1" } }