forked from peterbe/minimalcss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.12 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
{
"name": "minimalcss",
"version": "0.7.4",
"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.2",
"css-tree": "1.0.0-alpha.28",
"csso": "~3.5.0",
"filesize": "^3.5.11",
"minimist": "^1.2.0",
"puppeteer": "^1.2.0"
},
"devDependencies": {
"@types/cheerio": "0.22.7",
"@types/node": "8.9.5",
"@types/puppeteer": "1.2.0",
"fastify": "1.1.1",
"fastify-static": "0.8.0",
"jest": "22.4.3",
"prettier": "1.11.1",
"typescript": "2.7.2"
},
"scripts": {
"tsc": "tsc -p .",
"lintcheck": "scripts/lintcheck.sh",
"test": "jest",
"e2e": "./bin/e2e.js"
}
}