forked from nystudio107/rollup-plugin-critical
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.17 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.17 KB
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
{
"name": "rollup-plugin-critical",
"version": "1.0.7",
"description": "Rollup plugin to generate critical CSS.",
"author": "nystudio107",
"license": "MIT",
"keywords": [
"rollup",
"plugin",
"critical",
"css"
],
"homepage": "https://github.com/nystudio107/rollup-plugin-critical",
"repository": {
"type": "git",
"url": "git+ssh://github.com/nystudio107/rollup-plugin-critical"
},
"bugs": {
"url": "https://github.com/nystudio107/rollup-plugin-critical/issues"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsup src/index.ts --sourcemap --dts --format cjs,esm",
"check": "tsc -p config/base.json --noEmit",
"lint": "eslint -p .",
"test": "jest --passWithNoTests --coverage"
},
"dependencies": {
"critical": "^3.1.0"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^14.17.2",
"jest": "^27.0.3",
"rollup": "^2.50.5",
"ts-jest": "^27.0.2",
"tsup": "^4.10.1",
"typescript": "latest"
},
"peerDependencies": {
"rollup": ">=1.25.0"
}
}