dense-redux-actions
Version:
A simpler way to handle action types and actions creators for Redux.
51 lines (50 loc) • 1.19 kB
JSON
{
"name": "dense-redux-actions",
"version": "0.3.0",
"description": "A simpler way to handle action types and actions creators for Redux.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.json",
"lint": "tslint -p tsconfig.json",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/pcodk/dense-redux-actions.git"
},
"keywords": [
"Redux",
"Saga",
"ReactNative",
"Actions",
"ActionCreator"
],
"files": [
"dist/**/*"
],
"author": "Andreas Mønster <vejbaek@gmail.com>",
"license": "MIT",
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
},
"devDependencies": {
"@types/jest": "^24.0.23",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"ts-jest": "^24.1.0",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.2"
}
}