-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.01 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
{
"name": "gulp-regexpu",
"version": "1.1.0",
"description": "Gulp plugin that transpiles ES6 Unicode regular expressions to ES5.",
"homepage": "https://mths.be/gulp-regexpu",
"main": "index.js",
"keywords": [
"codegen",
"desugaring",
"ecmascript",
"es5",
"es6",
"gulpplugin",
"harmony",
"javascript",
"refactoring",
"regex",
"regexp",
"regexpu",
"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/gulp-regexpu.git"
},
"bugs": "https://github.com/mathiasbynens/gulp-regexpu/issues",
"files": [
"index.js"
],
"scripts": {
"test": "mocha"
},
"dependencies": {
"gulp-util": "^3.0.1",
"regexpu": "^1.1.1",
"through2": "^0.6.3",
"vinyl-sourcemaps-apply": "^0.1.4"
},
"devDependencies": {
"gulp-sourcemaps": "^1.3.0",
"mocha": "^2.1.0"
}
}