-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
31 lines (27 loc) · 1.13 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
{
"name": "babel-preset-electron",
"version": "6.8.0",
"description": "Babel preset with all plugins for Electron.",
"author": "Evan Morikawa <[email protected]>",
"homepage": "https://babeljs.io/",
"license": "MIT",
"repository": "https://github.com/emorikawa/babel-preset-electron",
"main": "index.js",
"engines": {
"electron": ">= 37.8"
},
"dependencies": {
"babel-plugin-transform-es2015-destructuring": "6.8.x",
"babel-plugin-transform-es2015-modules-commonjs": "6.8.x",
"babel-plugin-transform-do-expressions": "6.8.x",
"babel-plugin-transform-function-bind": "6.8.x",
"babel-plugin-transform-class-constructor-call": "6.8.x",
"babel-plugin-transform-class-properties": "6.8.x",
"babel-plugin-transform-decorators": "6.8.x",
"babel-plugin-transform-export-extensions": "6.8.x",
"babel-plugin-syntax-trailing-function-commas": "6.8.x",
"babel-plugin-transform-object-rest-spread": "6.8.x",
"babel-plugin-transform-async-to-generator": "6.8.x",
"babel-plugin-transform-exponentiation-operator": "6.8.x"
}
}