-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 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
32
33
34
35
36
37
38
39
40
41
{
"name": "webpack-error-on-warnings-plugin",
"version": "2.0.2",
"description": "Generates errors in a webpack build when there are warnings",
"repository": "[email protected]:hedgepigdaniel/webpack-error-on-warnings-plugin.git",
"author": "Daniel Playfair Cal <[email protected]>",
"license": "MIT",
"scripts": {
"build-cjs": "babel --source-maps true -x .ts src/ -d cjs",
"build-es": "babel --source-maps true --env-name es -x .ts src/ -d es",
"build-ts": "tsc",
"build": "yarn run build-cjs && yarn run build-es && yarn run build-ts",
"clean": "rimraf cjs es ts",
"prepare": "yarn run clean && yarn run build"
},
"main": "cjs/index.js",
"module": "es/index.js",
"types": "ts/index.d.ts",
"files": [
"cjs",
"es",
"ts"
],
"peerDependencies": {
"webpack": "^4.0.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@babel/preset-typescript": "^7.8.3",
"rimraf": "^3.0.1",
"typescript": "^3.7.5"
},
"engines": {
"node": ">=6"
},
"dependencies": {
"@types/webpack": "^4.41.3"
}
}