{
  "name": "detab",
  "version": "1.0.2",
  "description": "Detab: tabs -> spaces",
  "license": "MIT",
  "keywords": [
    "detab",
    "tab",
    "space",
    "tab-size",
    "size"
  ],
  "dependencies": {
    "repeat-string": "^1.5.2"
  },
  "files": [
    "index.js",
    "LICENSE"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/wooorm/detab.git"
  },
  "author": "Titus Wormer <tituswormer@gmail.com>",
  "devDependencies": {
    "browserify": "^10.0.0",
    "eslint": "^0.24.0",
    "esmangle": "^1.0.0",
    "istanbul": "^0.3.0",
    "jscs": "^1.0.0",
    "jscs-jsdoc": "^1.0.0",
    "mdast": "^0.26.0",
    "mdast-github": "^0.3.1",
    "mdast-lint": "^0.4.1",
    "mdast-usage": "^0.3.0",
    "mdast-yaml-config": "^0.2.0",
    "mocha": "^2.0.0"
  },
  "scripts": {
    "test-api": "mocha --check-leaks test.js",
    "test-coveralls": "istanbul cover _mocha --report lcovonly -- --check-leaks test.js",
    "test-coverage": "istanbul cover _mocha -- --check-leaks test.js",
    "test-travis": "npm run test-coveralls",
    "test": "npm run test-api",
    "lint-api": "eslint .",
    "lint-style": "jscs --reporter inline .",
    "lint": "npm run lint-api && npm run lint-style",
    "make": "npm run lint && npm run test-coverage",
    "build-md": "mdast . LICENSE --output --quiet",
    "build-bundle": "browserify index.js --bare -s detab > detab.js",
    "postbuild-bundle": "esmangle detab.js > detab.min.js",
    "build": "npm run build-md && npm run build-bundle",
    "prepublish": "npm run build"
  }
}
