redux-token-auth/package.json
2018-04-25 09:19:56 +01: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": "^20.0.8",
"codecov": "^2.3.0",
"jest": "^21.0.0",
"ts-jest": "^21.0.1",
"typescript": "^2.5.2"
},
"dependencies": {
"@types/react": "^16.0.5",
"@types/react-native": "^0.48.7",
"@types/react-redux": "^5.0.9",
"axios": "^0.16.2",
"react": "^15.6.1",
"react-redux": "^5.0.6",
"redux": "^3.7.2"
}
}