source: imaps-frontend/node_modules/regexpu-core/package.json@ 79a0317

main
Last change on this file since 79a0317 was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 3 days ago

F4 Finalna Verzija

  • Property mode set to 100644
File size: 1.6 KB
Line 
1{
2 "name": "regexpu-core",
3 "version": "6.2.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 "data/all-characters.js",
43 "data/character-class-escape-sets.js",
44 "data/i-bmp-mappings.js",
45 "data/iu-foldings.js",
46 "data/iu-mappings.js"
47 ],
48 "scripts": {
49 "build": "node scripts/index.js",
50 "test": "node --test tests/tests.js",
51 "test-node6": "mocha tests",
52 "cover": "NODE_V8_COVERAGE=coverage node --test --experimental-test-coverage tests/tests.js"
53 },
54 "dependencies": {
55 "regenerate": "^1.4.2",
56 "regenerate-unicode-properties": "^10.2.0",
57 "regjsgen": "^0.8.0",
58 "regjsparser": "^0.12.0",
59 "unicode-match-property-ecmascript": "^2.0.0",
60 "unicode-match-property-value-ecmascript": "^2.1.0"
61 },
62 "devDependencies": {
63 "jsesc": "^3.0.2",
64 "@unicode/unicode-16.0.0": "^1.6.2"
65 }
66}
Note: See TracBrowser for help on using the repository browser.