Merge pull request #150 from curbengh/dependabot/github_actions/actions/cache-4
[hexo-yam.git] / package.json
blob0807395d9d23b94504355ca43cb2ef6ca6ff9200
2   "name": "hexo-yam",
3   "description": "Yet Another Minifier. Minify and compress html, js, css, svg, xml and json",
4   "version": "8.0.0",
5   "readme": "README.md",
6   "main": "index.js",
7   "directories": {
8     "lib": "./lib"
9   },
10   "files": [
11     "lib/",
12     "index.js"
13   ],
14   "scripts": {
15     "lint": "standard",
16     "test": "jest"
17   },
18   "engines": {
19     "node": ">= 18.12.0"
20   },
21   "author": "curben",
22   "license": "MIT",
23   "homepage": "https://github.com/curbengh/hexo-yam",
24   "repository": "curbengh/hexo-yam",
25   "dependencies": {
26     "clean-css": "^5.1.2",
27     "html-minifier-terser": "^7.2.0",
28     "micromatch": "^4.0.2",
29     "minify-xml": "^3.2.0",
30     "svgo": "^3.0.0",
31     "terser": "^5.3.0"
32   },
33   "devDependencies": {
34     "hexo": "^7.1.0",
35     "jest": "^29.1.2",
36     "standard": "^17.0.0"
37   },
38   "keywords": [
39     "html",
40     "js",
41     "css",
42     "svg",
43     "xml",
44     "json",
45     "minify",
46     "compress",
47     "gzip",
48     "brotli",
49     "hexo-yam",
50     "hexo"
51   ],
52   "jest": {
53     "clearMocks": true,
54     "collectCoverage": true,
55     "coverageDirectory": "./coverage/",
56     "testEnvironment": "node"
57   }