UNPKG

redux-and-the-rest

Version:

Declarative, flexible Redux integration with your RESTful API

73 lines (72 loc) 2.13 kB
{ "name": "redux-and-the-rest", "version": "6.1.6", "description": "Declarative, flexible Redux integration with your RESTful API", "main": "index.js", "scripts": { "prepare": "rimraf -rf cjs && npm run build-development && npm run build-production", "build-development": "cross-env BABEL_ENV=development NODE_ENV=development babel src --ignore tests -d cjs", "build-production": "cross-env BABEL_ENV=production NODE_ENV=production rollup -c", "build-tests": "rimraf -rf cjs && cross-env BABEL_ENV=test NODE_ENV=development babel src -d cjs", "tests": "npm run build-tests && node ./cjs/tests/runTests.js || true", "watch-tests": "nodemon --exec 'clear && npm run tests || true'", "lint": "eslint --fix ./src" }, "repository": { "type": "git", "url": "git+https://github.com/greena13/redux-and-the-rest.git" }, "keywords": [ "React", "Redux", "RESTful", "API" ], "files": [ "cjs", "package.json", "README.md", "images", "LICENSE", "index.d.ts", "index.js" ], "typings": "./index.d.ts", "author": "Aleck Greenham", "license": "ISC", "bugs": { "url": "https://github.com/greena13/redux-and-the-rest/issues" }, "homepage": "https://github.com/greena13/redux-and-the-rest#readme", "peerDependencies": { "redux": ">= 1.0.0", "redux-thunk": ">= 1.0.0" }, "devDependencies": { "@babel/cli": "^7.8.4", "@babel/core": "^7.9.6", "@babel/preset-env": "^7.9.6", "@rollup/plugin-babel": "^5.0.2", "@rollup/plugin-replace": "^2.3.2", "@types/jasmine": "^3.5.10", "@types/whatwg-fetch": "^0.0.33", "cross-env": "^7.0.2", "eslint": "^7.1.0", "fetch-mock": "^9.10.1", "husky": "^4.2.5", "jasmine": "^3.5.0", "jasmine-console-reporter": "^3.1.0", "node-fetch": "^2.6.0", "nodemon": "^2.0.4", "redux": "^4.0.5", "redux-thunk": "^2.3.0", "rimraf": "^3.0.2", "rollup": "^2.10.9", "rollup-plugin-license": "^2.1.0", "rollup-plugin-terser": "^6.1.0" }, "dependencies": { "pluralize": "^8.0.0", "query-string": "^6.12.1" } }