-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 832 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 832 Bytes
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
{
"name": "@bitjourney/check-es-version-webpack-plugin",
"version": "1.0.3",
"description": "Webpack plugin to ensure the output results are valid in the specified ES version",
"main": "index.js",
"keywords": [
"webpack",
"ES5",
"IE11",
"Internet Explorer"
],
"scripts": {
"test": "node test/es5.test.js && node test/es2015.test.js"
},
"contributors": [
{
"name": "FUJI Goro",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/bitjourney/check-es-version-webpack-plugin.git"
},
"license": "ISC",
"engines": {
"node": ">= 8"
},
"dependencies": {
"acorn": ">= 6"
},
"peerDependencies": {
"webpack": ">= 4"
},
"devDependencies": {
"memory-fs": ">= 0.4",
"webpack": ">= 4"
}
}