{
  "name": "builder",
  "version": "5.0.0",
  "description": "An NPM-based task runner",
  "repository": {
    "type": "git",
    "url": "https://github.com/FormidableLabs/builder.git"
  },
  "author": "Ryan Roemer <ryan.roemer@formidable.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/FormidableLabs/builder/issues"
  },
  "homepage": "https://github.com/FormidableLabs/builder",
  "engines": {
    "node": ">=8"
  },
  "scripts": {
    "builder:build-md-toc": "doctoc --notitle README.md",
    "builder:build": "npm run builder:build-md-toc",
    "builder:lint-server": "eslint --color -c .eslintrc-server lib bin",
    "builder:lint-server-test": "eslint --color -c .eslintrc-server-test test",
    "builder:lint": "npm run builder:lint-server && npm run builder:lint-server-test",
    "builder:test": "mocha --opts test/server/mocha.opts test/server/spec",
    "builder:test-cov": "istanbul cover --config .istanbul.server.yml _mocha -- --opts test/server/mocha.opts test/server/spec",
    "builder:test-func": "mocha --opts test/func/mocha.opts test/func/spec",
    "builder:check": "npm run builder:lint && npm run builder:test && npm run builder:test-func",
    "builder:check-ci": "npm run builder:lint && npm run builder:test-cov && npm run builder:test-func"
  },
  "bin": {
    "builder": "bin/builder.js"
  },
  "dependencies": {
    "async": "^1.5.2",
    "chalk": "^2.4.2",
    "js-yaml": "^3.13.1",
    "lodash": "^4.17.15",
    "nopt": "^4.0.1",
    "tree-kill": "^1.2.1"
  },
  "devDependencies": {
    "babel-eslint": "^10.0.1",
    "chai": "^4.2.0",
    "coveralls": "^2.11.4",
    "doctoc": "^1.4.0",
    "eslint": "^5.13.0",
    "eslint-config-formidable": "^4.0.0",
    "eslint-plugin-filenames": "^1.3.2",
    "eslint-plugin-import": "^2.16.0",
    "eslint-plugin-promise": "^4.0.1",
    "istanbul": "^1.1.0-alpha.1",
    "mocha": "^6.1.4",
    "mock-fs": "^4.9.0",
    "object-assign": "^4.1.1",
    "sinon": "^1.17.2",
    "sinon-chai": "^2.8.0"
  }
}
