JiriChara/redux-blower

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "redux-blower",
  "version": "0.2.1",
  "description": "Faster and nicer reducers for your Redux applications. Say \"NO!\" to switch statements!",
  "main": "lib/index.js",
  "scripts": {
    "clean": "rimraf lib dist coverage",
    "benchmark": "node benchmark/benchmark.js",
    "dist": "mkdirp dist && browserify src/index.js -t [ babelify --presets [es2015] ] --standalone ReduxBlower --outfile dist/redux-blower.js",
    "uglify": "uglifyjs dist/redux-blower.js -o dist/redux-blower.min.js",
    "build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
    "build": "npm run clean && npm run dist && npm run uglify && npm run build:commonjs",
    "karma": "karma start",
    "lint": "eslint src spec",
    "test": "npm run lint && npm run karma && npm run build && npm run benchmark",
    "testAsync": "parallelshell 'npm run lint' 'npm run karma'",
    "watch": "npm run watch:js:build && npm run watch:js:uglify && npm run watch:js:test",
    "watch:js:build": "watch 'npm run build' src",
    "watch:js:uglify": "watch 'npm run uglify' src",
    "watch:js:test": "watch 'npm run testAsync' src spec"
  },
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com/JiriChara/redux-blower.git"
  },
  "keywords": [
    "redux",
    "reducer",
    "performance",
    "switch"
  ],
  "author": "Jiri Chara <me@jirichara.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/JiriChara/redux-blower/issues"
  },
  "homepage": "https://github.com/JiriChara/redux-blower#readme",
  "devDependencies": {
    "babel-cli": "^6.3.15",
    "babel-core": "^6.3.15",
    "babel-eslint": "^4.1.6",
    "babel-plugin-check-es2015-constants": "^6.3.13",
    "babel-plugin-transform-es2015-arrow-functions": "^6.3.13",
    "babel-plugin-transform-es2015-block-scoped-functions": "^6.3.13",
    "babel-plugin-transform-es2015-block-scoping": "^6.3.13",
    "babel-plugin-transform-es2015-classes": "^6.3.13",
    "babel-plugin-transform-es2015-computed-properties": "^6.3.13",
    "babel-plugin-transform-es2015-destructuring": "^6.3.13",
    "babel-plugin-transform-es2015-for-of": "^6.3.13",
    "babel-plugin-transform-es2015-function-name": "^6.3.13",
    "babel-plugin-transform-es2015-literals": "^6.3.13",
    "babel-plugin-transform-es2015-modules-commonjs": "^6.3.13",
    "babel-plugin-transform-es2015-object-super": "^6.3.13",
    "babel-plugin-transform-es2015-parameters": "^6.3.13",
    "babel-plugin-transform-es2015-shorthand-properties": "^6.3.13",
    "babel-plugin-transform-es2015-spread": "^6.3.13",
    "babel-plugin-transform-es2015-sticky-regex": "^6.3.13",
    "babel-plugin-transform-es2015-template-literals": "^6.3.13",
    "babel-plugin-transform-es2015-unicode-regex": "^6.3.13",
    "babel-plugin-transform-object-rest-spread": "^6.3.13",
    "babel-preset-es2015": "^6.6.0",
    "babel-register": "^6.3.13",
    "babelify": "^7.2.0",
    "benchmark": "^2.1.0",
    "browserify": "^13.0.0",
    "browserify-istanbul": "^2.0.0",
    "cross-env": "^1.0.7",
    "eslint": "1.10.3",
    "eslint-config-airbnb": "0.1.0",
    "eslint-plugin-import": "^0.8.0",
    "istanbul": "^0.4.3",
    "jasmine": "^2.4.1",
    "jasmine-expect": "^2.0.2",
    "karma": "^0.13.22",
    "karma-browserify": "^5.0.3",
    "karma-coverage": "^0.5.5",
    "karma-jasmine": "^0.3.8",
    "karma-jasmine-matchers": "^2.0.2",
    "karma-phantomjs-launcher": "^1.0.0",
    "karma-story-reporter": "^0.3.1",
    "mkdirp": "^0.5.1",
    "parallelshell": "^2.0.0",
    "phantomjs-prebuilt": "^2.1.7",
    "platform": "^1.3.1",
    "redux": "^3.5.1",
    "rimraf": "^2.5.2",
    "uglify-js": "^2.6.2",
    "watch": "^0.17.1",
    "watchify": "^3.7.0"
  },
  "dependencies": {
    "lodash": "^4.11.1"
  }
}