You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
2.3 KiB
89 lines
2.3 KiB
{
|
|
"name": "redux-logger",
|
|
"version": "3.0.6",
|
|
"description": "Logger for Redux",
|
|
"main": "dist/redux-logger.js",
|
|
"scripts": {
|
|
"lint": "eslint src",
|
|
"test": "npm run lint && npm run spec",
|
|
"spec": "nyc --all --silent --require babel-core/register mocha --plugins transform-inline-environment-variables --recursive spec/*.spec.js",
|
|
"spec:watch": "npm run spec -- --watch",
|
|
"coverage": "nyc report",
|
|
"coverage:html": "nyc report --reporter=html && http-server -p 8077 ./coverage -o",
|
|
"coverage:production": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
|
|
"clean": "rimraf dist",
|
|
"build": "rollup -c",
|
|
"precommit": "npm test",
|
|
"prepublish": "npm run clean && npm test && npm run build"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": "airbnb",
|
|
"rules": {
|
|
"no-console": "off"
|
|
},
|
|
"env": {
|
|
"browser": true,
|
|
"mocha": true
|
|
}
|
|
},
|
|
"nyc": {
|
|
"exclude": [
|
|
"node_modules",
|
|
"spec",
|
|
"example",
|
|
"lib",
|
|
"dist",
|
|
"coverage",
|
|
"rollup.config.js"
|
|
]
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"src"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/theaqua/redux-logger.git"
|
|
},
|
|
"keywords": [
|
|
"redux",
|
|
"logger",
|
|
"redux-logger",
|
|
"middleware"
|
|
],
|
|
"author": "Eugene Rodionov (https://github.com/theaqua)",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/theaqua/redux-logger/issues"
|
|
},
|
|
"homepage": "https://github.com/theaqua/redux-logger#readme",
|
|
"devDependencies": {
|
|
"babel-core": "^6.24.0",
|
|
"babel-plugin-external-helpers": "^6.22.0",
|
|
"babel-plugin-transform-inline-environment-variables": "6.8.0",
|
|
"babel-preset-es2015": "^6.24.0",
|
|
"chai": "3.5.0",
|
|
"codecov": "1.0.1",
|
|
"eslint": "^3.19.0",
|
|
"eslint-config-airbnb": "^14.1.0",
|
|
"eslint-plugin-import": "^2.2.0",
|
|
"eslint-plugin-jsx-a11y": "^4.0.0",
|
|
"eslint-plugin-react": "^6.10.3",
|
|
"http-server": "0.9.0",
|
|
"husky": "^0.13.2",
|
|
"mocha": "3.1.2",
|
|
"nyc": "9.0.1",
|
|
"redux": "^3.6.0",
|
|
"rimraf": "^2.6.1",
|
|
"rollup": "^0.41.6",
|
|
"rollup-plugin-babel": "^2.7.1",
|
|
"rollup-plugin-commonjs": "^8.0.2",
|
|
"rollup-plugin-node-resolve": "^3.0.0",
|
|
"rollup-plugin-uglify": "^1.0.2",
|
|
"sinon": "^1.17.7"
|
|
},
|
|
"dependencies": {
|
|
"deep-diff": "^0.3.5"
|
|
}
|
|
}
|