-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.05 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
{
"name": "critical-css-inliner",
"version": "1.3.0",
"description": "Inline critical CSS in HTML page",
"source": "./src/index.js",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": "./dist/index.modern.js",
"unpkg": "./dist/index.umd.js",
"repository": "https://github.com/ABVanton200/critical-css-inliner",
"bugs": {
"url": "https://github.com/ABVanton200/critical-css-inliner/issues"
},
"author": "Anton Babakhin <[email protected]>",
"license": "MIT",
"keywords": [
"critical",
"critical css",
"inline critical css",
"extract critical css",
"critical css inliner",
"critical path",
"puppeteer",
"optimization",
"performance",
"dropcss",
"adaptive design"
],
"scripts": {
"build": "microbundle",
"dev": "microbundle watch",
"test": "mocha --timeout 150000"
},
"dependencies": {
"critical-css-parser": "1.4.1",
"inline-critical": "9.0.1"
},
"devDependencies": {
"assert": "^2.0.0",
"microbundle": "0.15.1",
"mocha": "10.2.0"
}
}