redux-token-auth/package.json
2020-07-26 15:02:52 +09:00

57 lines
1.2 KiB
JSON

{
"name": "redux-token-auth",
"version": "0.19.1",
"description": "Redux actions and reducers to integrate with Devise Token Auth",
"main": "dist/index.js",
"types": "index.d.ts",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/kylecorbelli/redux-token-auth.git"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
},
"keywords": [
"react",
"redux",
"auth",
"authentication",
"token",
"devise",
"oauth"
],
"author": "Kyle Corbelli",
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.7",
"@types/react": "^16.9.43",
"@types/react-redux": "^7.1.9",
"codecov": "^3.7.2",
"jest": "^26.1.0",
"ts-jest": "^26.1.3",
"typescript": "^3.9.7"
},
"dependencies": {
"axios": "^0.19.2",
"react": "^16.13.1",
"react-redux": "^7.2.0",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0"
}
}