forked from Milanzor/webpack-watched-glob-entries-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (32 loc) · 1.24 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
{
"name": "webpack-watched-glob-entries-plugin",
"version": "2.1.2",
"description": "Webpack plugin to glob directories for entry files and also watch them for changes",
"main": "index.js",
"repository": "https://github.com/Milanzor/webpack-watched-glob-entries-plugin",
"author": "Milan van As <milanvanas@gmail.com>",
"license": "MIT",
"scripts": {
"test": "yarn cleanup && yarn test:main && yarn cleanup && yarn test:basename && yarn cleanup",
"test:main": "yarn build:main && mocha ./test/tests/output.test.js",
"build:main": "webpack --config test/webpack.config.js",
"watch:main": "yarn build:main --watch",
"test:basename": "yarn build:basename && mocha ./test/tests/output.basename.test.js",
"build:basename": "webpack --config test/webpack.basename.config.js",
"watch:basename": "yarn build:basename --watch",
"cleanup": "rimraf ./test/dist",
"travis": "yarn test"
},
"private": false,
"dependencies": {
"glob": "^7.1.2",
"glob-base": "^0.3.0"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^5.0.4",
"rimraf": "^2.6.2",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.10"
}
}