-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·40 lines (40 loc) · 985 Bytes
/
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
{
"name": "lbf-webpack-plugin",
"version": "1.0.5",
"description": "bundle your files into LBF Module format.",
"main": "dist/index.es5.js",
"module": "dist/index.es6.js",
"jsnext:main": "dist/index.es6.js",
"scripts": {
"build": "gulp"
},
"dependencies": {
"is-lbf-module": "^1.0.1",
"webpack": "^3.7.1"
},
"author": "xboy2012<xboy2008@live.cn>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/xboy2012/lbf-webpack-plugin"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-helper-modules": "^6.0.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-remove-strict-mode": "0.0.2",
"babel-preset-es2015": "^6.24.1",
"gulp": "^3.9.1",
"rollup": "^0.50.0"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"transform-remove-strict-mode",
"transform-object-rest-spread"
]
}
}