-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
47 lines (47 loc) · 1.14 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
{
"name": "targets-webpack-plugin",
"version": "4.0.0",
"author": {
"name": "Adam Stankiewicz",
"email": "sheerun@sher.pl",
"url": "https://sheerun.net"
},
"description": "Webpack plugin for legacy browser transcompilation (including dependencies)",
"main": "index.js",
"engines": {
"node": ">=8"
},
"dependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"core-js": "^3.19.1",
"rollup": "^2.60.0",
"rollup-plugin-hypothetical": "^2.1.0",
"webpack": "^5.64.1",
"webpack-sources": "^3.2.2"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"eslint": "^8.2.0",
"mocha": "^9.1.3",
"prettier": "^2.4.1",
"should": "^13.2.3"
},
"scripts": {
"test": "mocha",
"lint": "eslint lib test",
"travis:test": "npm run test",
"travis:lint": "npm run lint",
"format": "prettier --write '**/*.js'"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sheerun/targets-webpack-plugin.git"
},
"files": [
"index.js"
]
}