Griffingj/mutable-proxy

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "mutable-proxy",
  "version": "1.0.0",
  "description": "A library for creating mutable proxies",
  "main": "build/index.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/Griffingj/mutable-proxy.git"
  },
  "scripts": {
    "test": "lab",
    "start": "babel-node src/example/readme.js",
    "lint": "eslint src",
    "test-cov": "lab --coverage",
    "report-cov": "lab --coverage -r lcov | codeclimate-test-reporter",
    "prepublish": "npm run build",
    "build": "babel src --out-dir build",
    "validate": "npm ls"
  },
  "engines": {
    "node": ">=6.X.X",
    "npm": ">=3.X.X"
  },
  "author": "John Griffing",
  "license": "MIT",
  "devDependencies": {
    "babel-cli": "^6.8.0",
    "babel-core": "^6.8.0",
    "babel-eslint": "^6.0.2",
    "babel-preset-es2015": "^6.6.0",
    "babel-preset-stage-2": "^6.5.0",
    "babel-register": "^6.14.0",
    "codeclimate-test-reporter": "^0.3.3",
    "eslint": "^2.7.0",
    "eslint-config-airbnb": "^8.0.0",
    "eslint-plugin-import": "^1.7.0",
    "eslint-plugin-jsx-a11y": "^1.0.4",
    "eslint-plugin-react": "^5.0.1",
    "expect": "^1.20.2",
    "git-validate": "^2.2.1",
    "lab": "^11.0.1"
  },
  "pre-commit": [
    "test",
    "lint",
    "validate"
  ]
}