spy-middleware
Version:
a redux middleware for spying actions
47 lines (46 loc) • 1 kB
JSON
{
"name": "spy-middleware",
"version": "1.2.2",
"description": "a redux middleware for spying actions",
"main": "index.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/drpicox/spy-middleware.git"
},
"keywords": [
"redux",
"middleware",
"createStore",
"spy",
"testing",
"applyMiddleware"
],
"author": "David Rodenas <david.rodenas@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/drpicox/spy-middleware/issues"
},
"homepage": "https://github.com/drpicox/spy-middleware#readme",
"devDependencies": {
"eslint-plugin-prettier": "^3.0.1",
"husky": "^4.3.0",
"jest": "^26.5.2",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"redux": "^4.0.0"
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"prettier": {
"semi": false,
"trailingComma": "es5",
"singleQuote": true
}
}