-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
40 lines (40 loc) · 1.42 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
{
"name": "webpack-watched-glob-entries-plugin",
"version": "3.0.2",
"description": "Webpack plugin to glob directories for entry files and also watch them for changes",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Milanzor/webpack-watched-glob-entries-plugin.git"
},
"author": "Milan van As <milanvanas@gmail.com>",
"license": "MIT",
"scripts": {
"test": "npm run cleanup && npm run test:main && npm run cleanup && npm run test:basename && npm run cleanup",
"test:main": "npm run build:main && mocha ./test/tests/output.test.js",
"build:main": "webpack --config test/webpack.config.js",
"watch:main": "npm run build:main --watch",
"test:basename": "npm run build:basename && mocha ./test/tests/output.basename.test.js",
"build:basename": "webpack --config test/webpack.basename.config.js",
"watch:basename": "npm run build:basename --watch",
"cleanup": "rimraf ./test/dist"
},
"private": false,
"dependencies": {
"glob": "^10.3.10",
"glob-parent": ">=6.0.2"
},
"engines": {
"node": ">=14.0.0 <=22"
},
"devDependencies": {
"chai": "^4.3.10",
"mocha": "^10.2.0",
"rimraf": "^5.0.5",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"optionalDependencies": {
"fsevents": "^2.3.3"
}
}