UNPKG

@dabapps/redux-requests

Version:
84 lines (83 loc) 2.18 kB
{ "name": "@dabapps/redux-requests", "version": "0.6.0", "description": "Library for simple redux requests", "main": "dist/js/index.js", "directories": {}, "publishConfig": { "access": "public" }, "scripts": { "dist": "./scripts/dist", "lint": "tsc --noEmit --project tsconfig.json && npm run prettier-check && tslint --project tsconfig.json '{src,tests,types,examples,docs}/**/*.@(ts|tsx)'", "prettier-check": "prettier --check '{src,tests,types,examples,docs}/**/*.{ts,tsx,js,jsx}'", "prettier": "prettier --write '{src,tests,types,examples,docs}/**/*.{ts,tsx,js,jsx}'", "tests": "jest", "test": "npm run lint && npm run tests -- --runInBand --coverage", "prepublishOnly": "npm test && npm run dist" }, "repository": { "type": "git", "url": "git+https://github.com/dabapps/redux-requests.git" }, "keywords": [ "request", "requests", "responses", "redux", "dabapps" ], "author": "DabApps", "license": "BSD-3-Clause", "bugs": { "url": "https://github.com/dabapps/redux-requests/issues" }, "homepage": "https://github.com/dabapps/redux-requests#readme", "dependencies": { "@types/js-cookie": "^2.2.5", "@types/node": "^12.12.31", "axios": "^0.21.4", "flux-standard-action": "^1.2.0", "js-cookie": "^2.2.1", "path": "^0.12.7", "redux": "*", "redux-thunk": "*" }, "devDependencies": { "@types/jest": "^24.9.1", "jest": "^24.9.0", "prettier": "^1.19.1", "request": "^2.88.2", "ts-jest": "^24.3.0", "tslint": "^5.20.1", "tslint-config-dabapps": "^0.6.2", "typescript": "^3.3.4000" }, "peerDependencies": { "redux": "*", "redux-thunk": "*" }, "jest": { "coverageThreshold": { "global": { "branches": 100, "functions": 100, "lines": 100, "statements": 100 } }, "transform": { "^.+\\.tsx?$": "ts-jest" }, "testRegex": "(/tests/.*|\\.(test|spec))\\.(ts|tsx|js|jsx)$", "moduleFileExtensions": [ "ts", "tsx", "js", "jsx" ], "testPathIgnorePatterns": [ "<rootDir>/tests/helpers/*" ] } }