package.jsonā¢2.2 kB
{
"name": "regexp.escape",
"version": "1.1.0",
"author": "Jordan Harband",
"funding": {
"url": "https://github.com/sponsors/ljharb"
},
"description": "A robust ES3-compatible polyfill for the ES7 `RegExp.escape` proposal - see https://github.com/benjamingr/RexExp.escape/",
"license": "MIT",
"main": "index.js",
"scripts": {
"prepublish": "safe-publish-latest",
"pretest": "npm run lint",
"pretests-only": "es-shim-api --bound",
"tests-only": "npm run test:shimmed && npm run test:module",
"test": "npm run tests-only",
"posttest": "npx aud",
"test:shimmed": "node --es-staging test/shimmed",
"test:module": "node --es-staging test",
"coverage": "covert test/*.js",
"lint": "eslint .",
"version": "auto-changelog && git add CHANGELOG.md",
"postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
},
"repository": {
"type": "git",
"url": "git://github.com/es-shims/regexp.escape.git"
},
"keywords": [
"RegExp",
"regex",
"regular expression",
"escape",
"ES7",
"ecmascript",
"polyfill",
"shim",
"es-shims API"
],
"dependencies": {
"define-properties": "^1.1.3",
"es-abstract": "^1.17.0",
"function-bind": "^1.1.1"
},
"devDependencies": {
"@es-shims/api": "^2.1.2",
"@ljharb/eslint-config": "^15.1.0",
"auto-changelog": "^1.16.2",
"covert": "^1.1.1",
"es5-shim": "^4.5.13",
"es6-shim": "^0.35.5",
"eslint": "^6.8.0",
"foreach": "^2.0.5",
"safe-publish-latest": "^1.1.4",
"tape": "^5.0.0-next.3"
},
"testling": {
"files": [
"test/index.js",
"test/shimmed.js"
],
"browsers": [
"iexplore/6.0..latest",
"firefox/3.0..6.0",
"firefox/15.0..latest",
"firefox/nightly",
"chrome/4.0..10.0",
"chrome/20.0..latest",
"chrome/canary",
"opera/10.0..latest",
"opera/next",
"safari/4.0..latest",
"ipad/6.0..latest",
"iphone/6.0..latest",
"android-browser/4.2"
]
},
"engines": {
"node": ">= 0.4"
},
"auto-changelog": {
"output": "CHANGELOG.md",
"template": "keepachangelog",
"unreleased": false,
"commitLimit": false,
"backfillLimit": false
}
}