Joe8Bit/fuzzur

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "fuzzur",
  "version": "0.1.2",
  "description": "A flexible input fuzzer for tests",
  "keywords": [
    "fuzzer",
    "fuzzy",
    "testing",
    "mutation"
  ],
  "main": "./src/index.js",
  "scripts": {
    "test": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
    "codestyle": "./node_modules/.bin/jscs ./src ./test --preset airbnb"
  },
  "author": {
    "name": "Joe Pettersson",
    "email": "joe8bit@gmail.com",
    "url": "https://joe8bit.com"
  },
  "bugs": {
    "url": "https://github.com/Joe8Bit/fuzzur/issues"
  },
  "repository": {
    "type": "git",
    "url": "git@github.com:Joe8Bit/fuzzur.git"
  },
  "homepage": "https://github.com/Joe8Bit/fuzzur",
  "license": "ISC",
  "dependencies": {
    "deepmerge": "^0.2.7",
    "istanbul": "^0.3.6",
    "lodash": "^3.3.1",
    "type-detect": "^0.1.2"
  },
  "devDependencies": {
    "coveralls": "^2.11.2",
    "jscs": "^1.11.3",
    "mocha": "^2.1.0",
    "mocha-lcov-reporter": "0.0.1",
    "pre-commit": "^1.0.5"
  },
  "pre-commit": [
    "codestyle"
  ]
}