redux-token-auth/package.json

57 lines
1.2 KiB
JSON
Raw Normal View History

2017-09-02 15:00:41 +00:00
{
"name": "redux-token-auth",
2018-04-25 08:19:56 +00:00
"version": "0.19.1",
2017-09-02 15:00:41 +00:00
"description": "Redux actions and reducers to integrate with Devise Token Auth",
"main": "dist/index.js",
2017-09-03 13:41:20 +00:00
"types": "index.d.ts",
2017-09-02 15:00:41 +00:00
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/kylecorbelli/redux-token-auth.git"
2017-09-02 15:00:41 +00:00
},
2017-09-14 20:43:39 +00:00
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
},
2017-09-02 15:00:41 +00:00
"keywords": [
"react",
"redux",
"auth",
"authentication",
2017-09-02 15:00:41 +00:00
"token",
"devise",
"oauth"
],
"author": "Kyle Corbelli",
"license": "MIT",
"devDependencies": {
2020-07-24 08:32:12 +00:00
"@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": {
2020-07-24 08:32:12 +00:00
"axios": "^0.19.2",
"react": "^16.13.1",
"react-redux": "^7.2.0",
2020-07-26 06:02:52 +00:00
"redux": "^4.0.5",
"redux-thunk": "^2.3.0"
}
2017-09-02 15:00:41 +00:00
}