-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.07 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
{
"name": "webpack-critical-css-inliner",
"version": "1.3.0",
"description": "A fast webpack plugin for inlining critical (above-the-fold) css",
"main": "./src/index.js",
"repository": "https://github.com/ABVanton200/webpack-critical-css-inliner",
"bugs": {
"url": "https://github.com/ABVanton200/webpack-critical-css-inliner/issues"
},
"author": "Anton Babakhin <abvanton@gmail.com>",
"license": "MIT",
"keywords": [
"webpack",
"critical",
"critical css",
"inline critical css",
"extract critical css",
"critical css inliner",
"critical path",
"puppeteer",
"optimization",
"performance",
"dropcss",
"adaptive design"
],
"scripts": {
"build": "webpack --config ./webpack.config.js",
"test": "mocha ./test/**/*.spec.js --timeout 150000"
},
"dependencies": {
"critical-css-inliner": "1.3.0"
},
"devDependencies": {
"css-loader": "6.7.3",
"html-webpack-plugin": "5.5.0",
"mini-css-extract-plugin": "2.7.2",
"mocha": "10.2.0",
"webpack": "5.75.0",
"webpack-cli": "5.0.1"
}
}