{
  "name": "fulcon",
  "version": "2.0.0",
  "description": "Clones a function (creates wrapper function), with the same signature as source function",
  "main": "index.js",
  "scripts": {
    "clean": "rimraf coverage",
    "lint": "eslint *.js",
    "test": "nyc --reporter=json tape test.js | tap-spec",
    "browser": "browserify -t browserify-istanbul test.js | obake --coverage | tap-spec",
    "report": "istanbul report lcov text",
    "size": "browserify index.js | size-table fulcon",
    "testall": "npm run clean && npm run test && npm run browser && npm run report"
  },
  "files": [
    "index.js",
    "LICENSE",
    "package.json",
    "README.md"
  ],
  "pre-commit": [
    "clean",
    "lint",
    "test",
    "browser",
    "report",
    "size"
  ],
  "engines": {
    "node": ">= 6"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/alexindigo/fulcon.git"
  },
  "keywords": [
    "clone",
    "function",
    "signature",
    "browser",
    "client",
    "server"
  ],
  "author": "Alex Indigo <iam@alexindigo.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/alexindigo/fulcon/issues"
  },
  "homepage": "https://github.com/alexindigo/fulcon#readme",
  "devDependencies": {
    "browserify": "^16.2.2",
    "browserify-istanbul": "^3.0.1",
    "coveralls": "^3.0.2",
    "eslint": "^5.3.0",
    "is-node-modern": "^1.0.0",
    "istanbul": "^0.4.5",
    "nyc": "^12.0.2",
    "obake": "^0.1.2",
    "phantomjs-prebuilt": "^2.1.13",
    "pre-commit": "^1.1.3",
    "rimraf": "^2.5.4",
    "size-table": "^0.2.0",
    "tap-spec": "^5.0.0",
    "tape": "^4.6.2"
  }
}
