1 | {
|
2 | "name": "ignore-emit-webpack-plugin",
|
3 | "version": "2.0.6",
|
4 | "description": "Prevents ignored files from being emitted during a Webpack build",
|
5 | "scripts": {
|
6 | "test:webpack": "bash test/run-tests.sh",
|
7 | "test:unit": "node test/test-api.js",
|
8 | "test": "npm -s run test:unit && npm -s run test:webpack",
|
9 | "build": "tsc",
|
10 | "build:watch": "tsc --watch",
|
11 | "transpile": "mkdir -p es5 && babel index.js --out-file es5/index.js --presets=es2015",
|
12 | "publishOnly": "npm run build && npm run transpile && npm run test"
|
13 | },
|
14 | "keywords": [
|
15 | "webpack",
|
16 | "plugin",
|
17 | "ignore",
|
18 | "emit",
|
19 | "asset",
|
20 | "assets"
|
21 | ],
|
22 | "author": "mrbar42",
|
23 | "license": "MIT",
|
24 | "repository": {
|
25 | "type": "git",
|
26 | "url": "https://github.com/mrbar42/ignore-emit-webpack-plugin.git"
|
27 | },
|
28 | "devDependencies": {
|
29 | "babel-cli": "^6.26.0",
|
30 | "babel-preset-es2015": "^6.24.1",
|
31 | "typescript": "^4.0.3",
|
32 | "webpack": ">=5.4.0",
|
33 | "webpack-cli": "latest"
|
34 | }
|
35 | }
|