forked from cloudflare/collapsify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.29 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "collapsify",
"description": "Inlines all of the JavaScripts, stylesheets, images, fonts etc. of an HTML page.",
"version": "0.7.0",
"author": "Terin Stock <[email protected]> (http://terinstock.com)",
"bin": {
"collapsify": "./bin/cli.js",
"collapsify-server": "./bin/server.js"
},
"bugs": "http://github.com/cloudflare/collapsify/issues",
"contributors": [
"Christopher Joel <[email protected]> (http://scriptolo.gy)",
"Terin Stock <[email protected]> (http://terinstock.com)",
"Andrew Galloni <[email protected]>",
"Ingvar Stepanyan <[email protected]> (https://rreverser.com)"
],
"dependencies": {
"8bits": "^0.2.1",
"base64-js": "^1.5.1",
"bole": "^3.0.2",
"cliclopts": "^1.1.0",
"cssnano": "^5.1.7",
"got": "^9.0.0",
"http-ndjson": "^3.1.0",
"husky": "^1.0.0-rc.13",
"lint-staged": "^7.2.0",
"minimist": "^1.1.0",
"ndjson-logrus": "^1.1.0",
"p-queue": "^2.4.2",
"parse5-html-rewriting-stream": "^5.0.0",
"postcss": "^8.2.15",
"postcss-value-parser": "^3.3.0",
"pumpify": "^1.5.1",
"server-summary": "^6.1.0",
"systemd-socket": "0.0.0",
"terser": "^5.13.0"
},
"homepage": "http://github.com/cloudflare/collapsify",
"keywords": [
"html",
"stylesheet",
"font",
"css",
"javascript",
"js",
"compile",
"inline",
"mobilize",
"optimize",
"optimization"
],
"license": "MIT",
"main": "index",
"files": [
"bin",
"lib",
"index.js"
],
"preferGlobal": true,
"repository": {
"type": "git",
"url": "git://github.com/cloudflare/collapsify.git"
},
"devDependencies": {
"bl": "^2.0.1",
"coveralls": "^3.0.2",
"intelli-espower-loader": "^1.0.1",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^5.2.0",
"mz": "^2.1.0",
"nock": "^9.5.0",
"power-assert": "^1.6.0",
"xo": "^0.22.0"
},
"scripts": {
"start": "./bin/server.js",
"coverage": "cat ./coverage/lcov.info | coveralls",
"test": "xo && istanbul cover _mocha -- --require intelli-espower-loader --reporter spec --recursive"
},
"xo": {
"space": true,
"prettier": true
},
"lint-staged": {
"*.js": [
"xo --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}