{
  "name": "string-replace-all-ponyfill",
  "version": "1.0.1",
  "description": "`String.prototype.replaceAll` ponyfill.",
  "license": "MIT",
  "author": "Ivan Nikolić <niksy5@gmail.com> (http://ivannikolic.com)",
  "sideEffects": false,
  "exports": {
    ".": {
      "import": "./esm/index.js",
      "require": "./cjs/index.js"
    },
    "./package.json": "./package.json"
  },
  "main": "cjs/index.js",
  "module": "esm/index.js",
  "directories": {
    "test": "test"
  },
  "files": [
    "cjs/",
    "esm/",
    "CHANGELOG.md",
    "LICENSE.md",
    "README.md"
  ],
  "scripts": {
    "build": "rollup --config rollup.config.js",
    "lint": "eslint '{index,lib/**/*,test/**/*}.js'",
    "module-check": "node -e 'require(\"string-replace-all-ponyfill\");' && node --input-type=module -e 'import \"string-replace-all-ponyfill\";'",
    "prepublishOnly": "npm run build && npm run module-check",
    "postpublish": "GITHUB_TOKEN=$GITHUB_RELEASE_TOKEN github-release-from-changelog",
    "release": "np --no-release-draft",
    "test": "npm run lint && npm run test:automated",
    "test:automated": "BABEL_ENV=test karma start",
    "test:automated:watch": "npm run test:automated -- --auto-watch --no-single-run",
    "version": "version-changelog CHANGELOG.md && changelog-verify CHANGELOG.md && git add CHANGELOG.md"
  },
  "dependencies": {
    "escape-string-regexp": "^4.0.0"
  },
  "devDependencies": {
    "@babel/cli": "^7.2.3",
    "@babel/core": "^7.2.2",
    "@babel/plugin-transform-member-expression-literals": "^7.12.1",
    "@babel/plugin-transform-object-assign": "^7.2.0",
    "@babel/plugin-transform-property-literals": "^7.12.1",
    "@babel/plugin-transform-runtime": "^7.2.0",
    "@babel/preset-env": "^7.12.1",
    "@babel/runtime": "^7.2.0",
    "@rollup/plugin-babel": "^5.2.1",
    "@rollup/plugin-commonjs": "^15.1.0",
    "@rollup/plugin-node-resolve": "^9.0.0",
    "changelog-verify": "^1.1.2",
    "core-js": "^2.6.5",
    "eslint": "^7.11.0",
    "eslint-config-niksy": "^9.0.0",
    "eslint-config-prettier": "^6.14.0",
    "eslint-plugin-extend": "^0.1.1",
    "eslint-plugin-import": "^2.22.1",
    "eslint-plugin-jsdoc": "^30.7.3",
    "eslint-plugin-mocha": "^8.0.0",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-prettier": "^3.0.1",
    "eslint-plugin-promise": "^4.1.1",
    "eslint-plugin-unicorn": "^23.0.0",
    "esm": "^3.0.51",
    "github-release-from-changelog": "^2.1.1",
    "husky": "^4.3.0",
    "karma": "^5.2.3",
    "karma-browserstack-launcher": "^1.6.0",
    "karma-chrome-launcher": "^3.1.0",
    "karma-coverage-istanbul-reporter": "^3.0.3",
    "karma-fixture": "^0.2.6",
    "karma-html2js-preprocessor": "^1.1.0",
    "karma-mocha": "^2.0.1",
    "karma-mocha-reporter": "^2.2.5",
    "karma-rollup-preprocessor": "^7.0.0",
    "karma-sourcemap-loader": "^0.3.7",
    "lint-staged": "^10.4.2",
    "mocha": "^8.2.0",
    "np": "^6.5.0",
    "prettier": "^2.1.2",
    "rollup": "^2.32.1",
    "rollup-plugin-istanbul": "^2.0.1",
    "rollup-plugin-node-builtins": "^2.1.2",
    "rollup-plugin-node-globals": "^1.4.0",
    "version-changelog": "^3.1.1"
  },
  "engines": {
    "node": ">=10"
  },
  "keywords": [
    "string",
    "replaceall",
    "prototype",
    "string.prototype.replaceall",
    "ponyfill"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/niksy/string-replace-all-ponyfill.git"
  },
  "bugs": {
    "url": "https://github.com/niksy/string-replace-all-ponyfill/issues"
  },
  "homepage": "https://github.com/niksy/string-replace-all-ponyfill#readme"
}
