ecozoic/proxify

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "proxify-js",
  "version": "0.1.4",
  "description": "An ES6 library for wrapping objects in proxies that provide logging and profiling information",
  "main": "src/index.js",
  "scripts": {
    "start": "webpack-dev-server -d",
    "test": "npm run clean:test && karma start",
    "prepublish": "npm run build:prod",
    "build:dev": "npm run clean:build && webpack -d",
    "build:prod": "npm run clean:build && webpack -p",
    "clean": "npm run clean:build && npm run clean:doc && npm run clean:test",
    "clean:build": "rimraf dist",
    "clean:doc": "rimraf docs",
    "clean:test": "rimraf coverage",
    "doc": "npm run clean:doc && jsdoc -c conf.json",
    "lint": "npm run lint:src && npm run lint:test",
    "lint:src": "eslint src",
    "lint:test": "eslint test"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ecozoic/proxify.git"
  },
  "keywords": [
    "es6",
    "proxy",
    "logging",
    "profiling",
    "diagnostics",
    "webpack",
    "mocha",
    "karma",
    "istanbul",
    "babel"
  ],
  "contributors": [
    "John Mitchell <johnnn.mitchell@gmail.com>",
    "Mark Mosby"
  ],
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/ecozoic/proxify/issues"
  },
  "homepage": "https://github.com/ecozoic/proxify#readme",
  "devDependencies": {
    "babel-core": "6.7.4",
    "babel-istanbul": "0.7.0",
    "babel-istanbul-loader": "0.1.0",
    "babel-loader": "6.2.4",
    "babel-preset-es2015": "6.6.0",
    "chai": "3.5.0",
    "eslint": "2.6.0",
    "eslint-loader": "1.3.0",
    "inject-loader": "2.0.1",
    "jsdoc": "3.4.0",
    "karma": "0.13.22",
    "karma-chrome-launcher": "0.2.3",
    "karma-cli": "0.1.2",
    "karma-coverage": "0.5.5",
    "karma-mocha": "0.2.2",
    "karma-mocha-reporter": "2.0.0",
    "karma-sinon-chai": "1.2.0",
    "karma-sourcemap-loader": "0.3.7",
    "karma-webpack": "1.7.0",
    "lolex": "1.4.0",
    "mocha": "2.4.5",
    "rimraf": "2.5.2",
    "sinon": "1.17.3",
    "sinon-chai": "2.8.0",
    "webpack": "1.12.14",
    "webpack-dev-server": "1.14.1"
  }
}