{
  "name": "optimize-js",
  "version": "1.0.3",
  "description": "Optimize initial JavaScript execution/parsing by wrapping eager functions",
  "main": "lib/index.js",
  "scripts": {
    "test": "standard && mocha --timeout 60000 test/test.js",
    "benchmark": "npm run build-benchmark && hs -p 9090 benchmarks",
    "build-benchmark": "sh bin/build-benchmark.sh",
    "publish-benchmark": "sh bin/publish-benchmark.sh",
    "coverage": "istanbul cover ./node_modules/mocha/bin/_mocha test/test.js && istanbul check-coverage --lines 100 --function 100 --statements 100 --branches 100"
  },
  "bin": {
    "optimize-js": "lib/bin.js"
  },
  "keywords": [
    "optimize",
    "optimise",
    "js"
  ],
  "author": "Nolan Lawson <nolan@nolanlawson.com>",
  "license": "Apache-2.0",
  "dependencies": {
    "acorn": "^3.3.0",
    "concat-stream": "^1.5.1",
    "estree-walker": "^0.3.0",
    "magic-string": "^0.16.0",
    "yargs": "^4.8.1"
  },
  "devDependencies": {
    "assert": "^1.4.1",
    "denodeify": "^1.2.1",
    "http-server": "^0.9.0",
    "istanbul": "^0.4.5",
    "mocha": "^3.0.2",
    "standard": "^7.1.2",
    "uglify-js": "^2.7.0"
  },
  "files": [
    "lib"
  ],
  "standard": {
    "ignore": [
      "test/cases/**",
      "benchmarks/**"
    ]
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/nolanlawson/optimize-js.git"
  },
  "bugs": {
    "url": "https://github.com/nolanlawson/optimize-js/issues"
  },
  "homepage": "https://github.com/nolanlawson/optimize-js#readme"
}
