-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 973 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
{
"name": "ignore-emit-webpack-plugin",
"version": "2.0.6",
"description": "Prevents ignored files from being emitted during a Webpack build",
"scripts": {
"test:webpack": "bash test/run-tests.sh",
"test:unit": "node test/test-api.js",
"test": "npm -s run test:unit && npm -s run test:webpack",
"build": "tsc",
"build:watch": "tsc --watch",
"transpile": "mkdir -p es5 && babel index.js --out-file es5/index.js --presets=es2015",
"publishOnly": "npm run build && npm run transpile && npm run test"
},
"keywords": [
"webpack",
"plugin",
"ignore",
"emit",
"asset",
"assets"
],
"author": "mrbar42",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mrbar42/ignore-emit-webpack-plugin.git"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"typescript": "^4.0.3",
"webpack": ">=5.4.0",
"webpack-cli": "latest"
}
}