package.json
{
"name": "react-saga-rest",
"version": "1.2.2",
"description": "Fetch and store data from REST APIs using redux, reselect and sagas",
"main": "lib/index.js",
"scripts": {
"build": "babel src -d lib --ignore **/__tests__/*.js,**/__tests__/*.jsx",
"clean": "rimraf lib",
"prepack": "npm test && npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/just-paja/react-saga-rest.git"
},
"keywords": [
"react",
"redux",
"saga",
"reselect",
"transform",
"rest",
"api",
"store",
"reducer"
],
"author": "Pavel Žák <pavel@zak.global>",
"license": "MIT",
"bugs": {
"url": "https://github.com/just-paja/react-saga-rest/issues"
},
"files": [
"lib",
"LICENSE",
"README.md"
],
"homepage": "https://github.com/just-paja/react-saga-rest#readme",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.2",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"jest": "^24.8.0",
"jest-enzyme": "^7.0.2",
"jest-runner-standard": "0.0.13",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-dom": "^16.8.6",
"react-redux": "^7.1.0",
"redux": "^4.0.4",
"redux-mock-store": "^1.5.3",
"redux-saga": "^1.0.5",
"reselect": "^4.0.0",
"sinon": "^7.3.2",
"standard": "^12.0.1"
},
"peerDependencies": {
"react": ">=16.8.6",
"prop-types": ">=15.7.2",
"redux-saga": ">=1.0.5",
"redux": ">=4.0.4",
"reselect": ">=4.0.0"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}"
],
"setupTestFrameworkScriptFile": "<rootDir>/jest/enzyme.js"
},
"standard": {
"env": [
"jest"
],
"parser": "babel-eslint"
},
"dependencies": {}
}