redux-token-auth/package.json

56 lines
1.2 KiB
JSON
Raw Normal View History

2017-09-02 15:00:41 +00:00
{
"name": "redux-token-auth",
2017-09-18 22:34:01 +00:00
"version": "0.18.0",
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": {
"@types/jest": "^20.0.8",
2017-09-15 17:20:32 +00:00
"codecov": "^2.3.0",
"jest": "^21.0.0",
2017-09-14 20:43:39 +00:00
"ts-jest": "^21.0.1",
"typescript": "^2.5.2"
},
"dependencies": {
2017-09-18 19:43:09 +00:00
"@types/react": "^16.0.5",
"@types/react-redux": "^5.0.9",
"axios": "^0.16.2",
2017-09-18 19:43:09 +00:00
"react": "^15.6.1",
"react-redux": "^5.0.6",
"redux": "^3.7.2"
}
2017-09-02 15:00:41 +00:00
}