0xc14m1z/redux-namespace-actions

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "redux-namespace-actions",
  "version": "1.0.1",
  "description": "Add a namespace to redux actions in order to have leaner names.",
  "main": "./dist/index.js",
  "files": [
    "dist"
  ],
  "scripts": {
    "init": "mkdir dist",
    "clean": "rm -rf dist",
    "prebuild": "npm run clean && npm run init",
    "build": "npx babel src --out-dir dist",
    "pretest": "npm run build",
    "test": "NODE_ENV=test nyc mocha --require babel-core/register specs/**/*.js",
    "coverage": "nyc report --reporter=text-lcov | coveralls",
    "start": "npm test -- -w"
  },
  "nyc": {
    "exclude": [
      "dist"
    ]
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/0xc14m1z/redux-namespace-actions.git"
  },
  "author": "0xc14m1z <0xc14m1z@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/0xc14m1z/redux-namespace-actions/issues"
  },
  "homepage": "https://github.com/0xc14m1z/redux-namespace-actions#readme",
  "devDependencies": {
    "babel-cli": "^6.26.0",
    "babel-core": "^6.26.0",
    "babel-preset-env": "^1.6.1",
    "chai": "^4.1.2",
    "coveralls": "^3.0.0",
    "mocha": "^5.0.0",
    "npx": "^9.7.1",
    "nyc": "^11.4.1",
    "babel-plugin-rewire": "^1.1.0"
  }
}