-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
72 lines (72 loc) · 1.41 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "regexpu",
"version": "5.1.0",
"description": "A source code transpiler that enables the use of ES2015 Unicode regular expressions in ES5.",
"homepage": "https://mths.be/regexpu",
"main": "regexpu.js",
"engines": {
"node": ">=6"
},
"bin": "bin/regexpu",
"keywords": [
"codegen",
"desugaring",
"ecmascript",
"es5",
"es6",
"es2015",
"harmony",
"javascript",
"refactoring",
"regex",
"regexp",
"regular expressions",
"rewriting",
"syntax",
"transformation",
"transpile",
"transpiler",
"unicode"
],
"license": "MIT",
"author": {
"name": "Mathias Bynens",
"url": "https://mathiasbynens.be/"
},
"repository": {
"type": "git",
"url": "https://github.com/mathiasbynens/regexpu.git"
},
"bugs": "https://github.com/mathiasbynens/regexpu/issues",
"files": [
"LICENSE-MIT.txt",
"regexpu.js",
"transform-tree.js",
"transpile-code.js",
"bin/",
"man/"
],
"directories": {
"bin": "bin",
"man": "man"
},
"scripts": {
"build": "scripts/build",
"test": "mocha tests",
"cover": "istanbul cover --report html node_modules/.bin/_mocha tests/tests.js -- -u exports -R spec"
},
"dependencies": {
"jsesc": "^3.0.2",
"recast": "^0.23.9",
"regexpu-core": "^6.0.0"
},
"devDependencies": {
"babili": "0.1.4",
"browserify": "^17.0.0",
"codecov": "^3.8.3",
"istanbul": "^0.4.5",
"lodash": "^4.17.21",
"mocha": "^10.7.3",
"regexpu-fixtures": "^2.1.6"
}
}