| 1 | {
|
|---|
| 2 | "name": "regexpu-core",
|
|---|
| 3 | "version": "6.4.0",
|
|---|
| 4 | "description": "regexpu’s core functionality (i.e. `rewritePattern(pattern, flag)`), capable of translating ES6 Unicode regular expressions to ES5.",
|
|---|
| 5 | "homepage": "https://mths.be/regexpu",
|
|---|
| 6 | "main": "rewrite-pattern.js",
|
|---|
| 7 | "engines": {
|
|---|
| 8 | "node": ">=4"
|
|---|
| 9 | },
|
|---|
| 10 | "keywords": [
|
|---|
| 11 | "codegen",
|
|---|
| 12 | "desugaring",
|
|---|
| 13 | "ecmascript",
|
|---|
| 14 | "es5",
|
|---|
| 15 | "es6",
|
|---|
| 16 | "harmony",
|
|---|
| 17 | "javascript",
|
|---|
| 18 | "refactoring",
|
|---|
| 19 | "regex",
|
|---|
| 20 | "regexp",
|
|---|
| 21 | "regular expressions",
|
|---|
| 22 | "rewriting",
|
|---|
| 23 | "syntax",
|
|---|
| 24 | "transformation",
|
|---|
| 25 | "transpile",
|
|---|
| 26 | "transpiler",
|
|---|
| 27 | "unicode"
|
|---|
| 28 | ],
|
|---|
| 29 | "license": "MIT",
|
|---|
| 30 | "author": {
|
|---|
| 31 | "name": "Mathias Bynens",
|
|---|
| 32 | "url": "https://mathiasbynens.be/"
|
|---|
| 33 | },
|
|---|
| 34 | "repository": {
|
|---|
| 35 | "type": "git",
|
|---|
| 36 | "url": "https://github.com/mathiasbynens/regexpu-core.git"
|
|---|
| 37 | },
|
|---|
| 38 | "bugs": "https://github.com/mathiasbynens/regexpu-core/issues",
|
|---|
| 39 | "files": [
|
|---|
| 40 | "LICENSE-MIT.txt",
|
|---|
| 41 | "rewrite-pattern.js",
|
|---|
| 42 | "rewrite-pattern.d.ts",
|
|---|
| 43 | "data/all-characters.js",
|
|---|
| 44 | "data/character-class-escape-sets.js",
|
|---|
| 45 | "data/i-bmp-mappings.js",
|
|---|
| 46 | "data/iu-foldings.js",
|
|---|
| 47 | "data/iu-mappings.js"
|
|---|
| 48 | ],
|
|---|
| 49 | "scripts": {
|
|---|
| 50 | "build": "node scripts/index.js",
|
|---|
| 51 | "test": "node --test tests/tests.js",
|
|---|
| 52 | "test-node6": "mocha tests",
|
|---|
| 53 | "cover": "NODE_V8_COVERAGE=coverage node --test --experimental-test-coverage tests/tests.js"
|
|---|
| 54 | },
|
|---|
| 55 | "dependencies": {
|
|---|
| 56 | "regenerate": "^1.4.2",
|
|---|
| 57 | "regenerate-unicode-properties": "^10.2.2",
|
|---|
| 58 | "regjsgen": "^0.8.0",
|
|---|
| 59 | "regjsparser": "^0.13.0",
|
|---|
| 60 | "unicode-match-property-ecmascript": "^2.0.0",
|
|---|
| 61 | "unicode-match-property-value-ecmascript": "^2.2.1"
|
|---|
| 62 | },
|
|---|
| 63 | "devDependencies": {
|
|---|
| 64 | "jsesc": "^3.0.2",
|
|---|
| 65 | "@unicode/unicode-17.0.0": "^1.6.12"
|
|---|
| 66 | }
|
|---|
| 67 | }
|
|---|