forked from purtuga/esm-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 930 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": "@purtuga/esm-webpack-plugin",
"version": "1.5.0",
"description": "A webpack plugin that changes the output to be an ESM library",
"main": "esm-webpack-plugin.js",
"scripts": {
"preversion": "npm run test",
"test": "mocha -r esm test/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/purtuga/esm-webpack-plugin.git"
},
"keywords": [
"webpack",
"plugin",
"esm",
"module",
"export",
"library"
],
"author": "Paul Tavares",
"license": "MIT",
"bugs": {
"url": "https://github.com/purtuga/esm-webpack-plugin/issues"
},
"homepage": "https://github.com/purtuga/esm-webpack-plugin#readme",
"peerDependencies": {
"webpack": "^5.0.0"
},
"dependencies": {
"webpack-sources": "^1.0.0"
},
"devDependencies": {
"esm": "^3.2.25",
"mocha": "^6.2.2",
"webpack": "^5.37.0",
"webpack-cli": "^3.3.10"
}
}