58 lines
1.5 KiB
JSON
58 lines
1.5 KiB
JSON
{
|
|
"name": "react-rest-request",
|
|
"version": "0.5.1",
|
|
"description": "Minimalistic REST API client for React inspired by Apollo",
|
|
"readme": "README.md",
|
|
"main": "./target/index.js",
|
|
"types": "./target/index.d.ts",
|
|
"files": [
|
|
"target"
|
|
],
|
|
"scripts": {
|
|
"test": "jest",
|
|
"build": "rm -rf target && tsc",
|
|
"prepublishOnly": "rm -rf target && tsc",
|
|
"report-coverage": "cat coverage/lcov.info | coveralls"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/pleshevskiy/react-rest-request.git"
|
|
},
|
|
"keywords": [
|
|
"react",
|
|
"rest",
|
|
"request",
|
|
"fetch",
|
|
"hook",
|
|
"api",
|
|
"client"
|
|
],
|
|
"author": "Dmitriy Pleshevskiy <dmitriy@ideascup.me>",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/pleshevskiy/react-rest-request/issues"
|
|
},
|
|
"homepage": "https://github.com/pleshevskiy/react-rest-request#readme",
|
|
"dependencies": {
|
|
"lodash.isequal": "^4.5.0",
|
|
"tiny-invariant": "^1.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^26.0.15",
|
|
"@types/lodash.isequal": "^4.5.5",
|
|
"@types/node-fetch": "^2.5.7",
|
|
"@types/react": "^16.9.55",
|
|
"@typescript-eslint/eslint-plugin": "^4.6.1",
|
|
"@typescript-eslint/parser": "^4.6.1",
|
|
"eslint": "^7.12.1",
|
|
"eslint-plugin-react": "^7.21.5",
|
|
"eslint-plugin-react-hooks": "^4.2.0",
|
|
"jest": "^26.6.3",
|
|
"node-fetch": "^2.6.1",
|
|
"ts-jest": "^26.4.3",
|
|
"typescript": "^4.0.5"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^16.3.0 || ^17.0.0"
|
|
}
|
|
}
|