-
-
Notifications
You must be signed in to change notification settings - Fork 120
/
package.json
66 lines (66 loc) · 1.31 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
{
"name": "gulp-babel",
"version": "8.0.0",
"description": "Use next generation JavaScript, today",
"license": "MIT",
"repository": "babel/gulp-babel",
"author": "Sindre Sorhus <[email protected]> (sindresorhus.com)",
"contributors": [
"Charles Samborski <[email protected]> (demurgos.net)"
],
"engines": {
"node": ">=6"
},
"scripts": {
"test": "xo && mocha"
},
"pre-commit": {
"run": [
"test"
]
},
"files": [
"index.js"
],
"keywords": [
"gulpplugin",
"babel",
"transpiler",
"es2015",
"es2016",
"es2017",
"rewriting",
"transformation",
"syntax",
"codegen",
"desugaring",
"javascript",
"compiler"
],
"dependencies": {
"plugin-error": "^1.0.1",
"replace-ext": "^1.0.0",
"through2": "^3.0.0",
"vinyl-sourcemaps-apply": "^0.2.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-transform-arrow-functions": "^7.0.0",
"@babel/plugin-transform-block-scoping": "^7.0.0",
"@babel/plugin-transform-classes": "^7.0.0",
"gulp-sourcemaps": "^2.6.4",
"mocha": "^6.2.1",
"pre-commit": "^1.2.2",
"vinyl": "^2.1.0",
"xo": "^0.25.3"
},
"xo": {
"envs": [
"node",
"mocha"
]
}
}