{
  "name": "indexr",
  "description": "Automated dynamic indexes for your ES6+ source code.",
  "main": "./dist/index.js",
  "bin": {
    "indexr": "./dist/bin.js"
  },
  "scripts": {
    "build": "gulp compile",
    "dev": "gulp watch",
    "docs": "doctoc README.md --title '##Contents'",
    "pretest-watch": "gulp compile",
    "report-coverage": "npm run build && nyc --require babel-core/register npm run test-once && nyc report --reporter=lcov > coverage.lcov && codecov",
    "release": "git checkout master && git pull && git checkout release && git pull && git merge master && git push && git checkout master",
    "semantic-release": "semantic-release pre && npm publish && semantic-release post",
    "test": "npm run build && npm run test-once",
    "test-and-compile": "npm run build && npm test",
    "test-once": "mocha --compilers js:babel-register test --ignore **/fixtures --require babel-polyfill",
    "test-watch": "mocha --watch --compilers js:babel-register test --ignore **/fixtures --require babel-polyfill"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/ryardley/indexr.git"
  },
  "keywords": [
    "dynamic modules",
    "dynamic include",
    "autoloading",
    "module",
    "module autoloading",
    "modules",
    "es6",
    "es6-modules",
    "modular javascript",
    "javascript",
    "indexes",
    "dynamic index",
    "indexes for javascript modules"
  ],
  "author": "Rudi Yardley <contact@rudiyardley.com> (http://rudiyardley.com)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/ryardley/indexr/issues"
  },
  "files": [
    "dist"
  ],
  "homepage": "https://github.com/ryardley/indexr",
  "git-tag-version": true,
  "devDependencies": {
    "babel-core": "^6.11.4",
    "babel-eslint": "^6.1.2",
    "babel-plugin-add-module-exports": "^0.2.1",
    "babel-plugin-transform-async-functions": "^6.8.0",
    "babel-plugin-transform-object-assign": "^6.8.0",
    "babel-plugin-transform-regenerator": "^6.11.4",
    "babel-preset-es2015": "^6.9.0",
    "babel-preset-stage-0": "^6.5.0",
    "babel-register": "^6.11.6",
    "chai": "^3.5.0",
    "changelog": "^1.0.7",
    "codecov": "^1.0.1",
    "concurrently": "^2.2.0",
    "doctoc": "^1.2.0",
    "eslint": "^2.13.1",
    "eslint-config-airbnb": "^9.0.1",
    "eslint-plugin-import": "^1.11.0",
    "eslint-plugin-jsx-a11y": "^1.5.5",
    "eslint-plugin-mocha": "^4.3.0",
    "eslint-plugin-react": "^5.2.2",
    "gulp": "^3.9.1",
    "gulp-babel": "^6.1.2",
    "gulp-watch": "^4.3.9",
    "mocha": "^3.0.0",
    "nyc": "^8.1.0",
    "sinon": "^1.17.5",
    "semantic-release": "^4.3.5"
  },
  "dependencies": {
    "async": "^2.0.1",
    "babel-polyfill": "^6.13.0",
    "camelcase": "^3.0.0",
    "capitalize": "^1.0.0",
    "chalk": "^1.1.3",
    "chokidar": "^1.6.0",
    "commander": "^2.9.0",
    "glob": "^7.0.5",
    "linewrap": "^0.2.1",
    "lodash.curry": "^4.1.1",
    "lodash.flatten": "^4.4.0",
    "lodash.flow": "^3.5.0",
    "lodash.omit": "^4.5.0",
    "lodash.throttle": "^4.1.1",
    "lodash.uniq": "^4.5.0"
  },
  "release": {
    "branch": "release"
  },
  "version": "1.1.10"
}