-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
45 lines (45 loc) · 1 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
{
"name": "minimalcss",
"version": "0.11.3",
"description": "Extract the minimal CSS used in a set of URLs with puppeteer",
"main": "./index.js",
"author": "Peter Bengtsson",
"license": "MIT",
"bin": {
"minimalcss": "./bin/minimalcss.js"
},
"homepage": "https://github.com/peterbe/minimalcss",
"repository": {
"type": "git",
"url": "https://github.com/peterbe/minimalcss.git"
},
"keywords": [
"css",
"web-perf",
"web-performance",
"optimizer"
],
"bugs": {
"url": "https://github.com/peterbe/minimalcss/issues"
},
"dependencies": {
"cheerio": "1.0.0-rc.3",
"css-tree": "1.0.0-alpha.39",
"csso": "4.0.3",
"filesize": "^6.0.0",
"minimist": "^1.2.0",
"puppeteer": "^2.0.0"
},
"devDependencies": {
"fastify": "3.4.1",
"fastify-static": "3.1.0",
"jest": "26.1.0",
"prettier": "2.1.2"
},
"scripts": {
"tsc": "tsc -p .",
"lintcheck": "scripts/lintcheck.sh",
"test": "jest",
"e2e": "scripts/e2e.js"
}
}