-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
100 lines (100 loc) · 2.65 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "pug-plugin",
"version": "5.3.0",
"description": "Pug plugin for webpack handles a template as an entry point, extracts CSS and JS from their sources referenced in Pug.",
"keywords": [
"html",
"pug",
"bundler",
"bundle",
"plugin",
"loader",
"webpack",
"entry",
"entrypoint",
"template",
"integrity",
"js",
"javascript",
"css",
"scss",
"style",
"script",
"markdown"
],
"license": "ISC",
"author": "webdiscus (https://github.com/webdiscus)",
"maintainers": [
"webdiscus (https://github.com/webdiscus)"
],
"funding": {
"type": "patreon",
"url": "https://patreon.com/biodiscus"
},
"homepage": "https://github.com/webdiscus/pug-plugin",
"bugs": {
"url": "https://github.com/webdiscus/pug-plugin/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webdiscus/pug-plugin.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"main": "src/index.js",
"scripts": {
"security": "npm audit --production",
"test": "jest --detectOpenHandles --config ./test/jest.config.js",
"test:coverage": "jest --detectOpenHandles --collectCoverage --config ./test/jest.config.js",
"test:index": "jest --detectOpenHandles --config ./test/jest.config.js --runTestsByPath ./test/index.test.js",
"test:issue": "jest --detectOpenHandles --config ./test/jest.config.js --runTestsByPath ./test/issue.test.js",
"publish:public": "npm publish --access public",
"publish:beta": "npm publish --tag beta"
},
"files": [
"src",
"CHANGELOG.md",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=16.20.0"
},
"peerDependencies": {
"webpack": ">=5.32.0"
},
"dependencies": {
"ansis": "2.0.3",
"html-bundler-webpack-plugin": "3.14.0",
"js-beautify": "^1.15.1",
"pug": "3.0.3"
},
"devDependencies": {
"@babel/core": "7.24.4",
"@babel/preset-env": "7.24.4",
"@test-fixtures/js": "0.0.2",
"@test-fixtures/lorem": "0.0.2",
"@test-fixtures/scss": "0.0.7",
"@types/jest": "^29.5.12",
"css-loader": "^6.11.0",
"cssnano": "^6.1.2",
"jest": "^29.7.0",
"mini-css-extract-plugin": "^2.8.1",
"normalize.css": "^8.0.1",
"postcss-loader": "^8.1.1",
"prettier": "^3.2.5",
"@test/pug-plugin": "file:./",
"responsive-loader": "^3.1.2",
"sass": "1.74.1",
"sass-loader": "^14.1.1",
"sharp": "0.32.6",
"svgo-loader": "^4.0.0",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"webpack": "5.91.0",
"webpack-cli": "5.1.4",
"webpack-dev-server": "^5.0.4",
"webpack-merge": "^5.10.0"
}
}