-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 988 Bytes
/
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
{
"name": "fastify-minify",
"version": "1.2.0",
"description": "Minification and transformation plugin for Fastify",
"main": "index.js",
"scripts": {
"test": "tap --no-coverage-report --no-coverage --jobs=1 -t 60 test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jelenkee/fastify-minify.git"
},
"keywords": [
"fastify",
"minify",
"uglify",
"minifier",
"plugin",
"transform"
],
"author": "Jelenkee",
"license": "MIT",
"bugs": {
"url": "https://github.com/Jelenkee/fastify-minify/issues"
},
"homepage": "https://github.com/Jelenkee/fastify-minify#readme",
"dependencies": {
"array-flat-polyfill": "^1.0.1",
"csso": "^4.2.0",
"fastify-plugin": "^3.0.0",
"get-stream": "^6.0.1",
"html-minifier-terser": "^6.1.0",
"terser": "^5.10.0",
"tiny-lru": "^7.0.6"
},
"devDependencies": {
"fastify": "^3.24.0",
"fastify-static": "^4.5.0",
"tap": "^15.1.5"
}
}