{
  "name": "js-cleanup",
  "version": "1.2.0",
  "description": "Smart comment and whitespace cleaner for JavaScript-like files.",
  "main": "./index.js",
  "module": "./esm/index.mjs",
  "source": "./src/index.ts",
  "files": [
    "index.*",
    "esm"
  ],
  "engines": {
    "node": "^10.14.2 || >=12.0.0"
  },
  "scripts": {
    "lint": "eslint -f unix --ext js,ts src test",
    "test": "nyc mocha",
    "pretest": "yarn build",
    "build": "rollup -c && node ./finish",
    "clean": "rimraf ./.nyc_output/** ./coverage/** ./esm/** index.js*",
    "coverage": "nyc report -r=lcov",
    "prepare": "yarn clean && yarn lint && yarn test"
  },
  "keywords": [
    "javascript",
    "typescript",
    "es6",
    "clean",
    "cleanup",
    "source",
    "comments",
    "remover",
    "removal"
  ],
  "author": "aMarCruz <amarcruzbox-git@yahoo.com>",
  "license": "MIT",
  "homepage": "https://github.com/aMarCruz/js-cleanup",
  "bugs": "https://github.com/aMarCruz/js-cleanup/issues",
  "repository": {
    "url": "https://github.com/aMarCruz/js-cleanup",
    "type": "git"
  },
  "dependencies": {
    "magic-string": "^0.25.7",
    "perf-regexes": "^1.0.1",
    "skip-regex": "^1.0.2"
  },
  "devDependencies": {
    "@rollup/plugin-node-resolve": "~9.0.0",
    "@types/expect": "~1.20.03",
    "@types/mocha": "~8.0.3",
    "@types/node": "~14.11.2",
    "@typescript-eslint/eslint-plugin": "~4.2.0",
    "@typescript-eslint/parser": "~4.2.0",
    "@wessberg/rollup-plugin-ts": "~1.3.4",
    "eslint": "~7.9.0",
    "eslint-config-standardize": "^0.7.1",
    "eslint-plugin-prettierx": "~0.14.0",
    "expect": "~1.20.2",
    "mocha": "~8.1.3",
    "nyc": "~15.1.0",
    "prettier": "github:aMarCruz/prettier#2.0.5",
    "rimraf": "~3.0.2",
    "rollup": "~2.28.1",
    "sourcemap-validator": "~2.1.0",
    "tslib": "^2.0.1",
    "typescript": "~4.0.3"
  }
}
