-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 918 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
36
37
38
39
40
{
"name": "webpack-plugin-log-version",
"version": "0.6.2",
"description": "A webpack plugin that prepends a javacript bundle with project version information",
"main": "lib/index.js",
"scripts": {
"start": "tsc --pretty --watch & gulp watch",
"build": "gulp && tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"webpack",
"plugin",
"git",
"version",
"logging",
"logger",
"console"
],
"author": "Trevor Richards <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/ejs": "^3.0.6",
"del": "^6.0.0",
"gulp": "^4.0.2",
"typescript": "^4.2.4",
"webpack": "^5.37"
},
"peerDependencies": {
"webpack": ">=5.x"
},
"repository": {
"type": "git",
"url": "https://github.com/trev-dev/webpack-plugin-log-version"
},
"dependencies": {
"chalk": "^4.1.1",
"ejs": "^3.1.6"
}
}