hexo-yam/package.json

59 lines
1.1 KiB
JSON
Raw Normal View History

2016-05-26 11:09:41 +00:00
{
"name": "hexo-yam",
2020-01-03 01:37:33 +00:00
"description": "Yet Another Minifier. Minify and compress html, js, css, svg, xml and json",
2021-04-25 08:51:39 +00:00
"version": "5.0.0",
"readme": "README.md",
"main": "index.js",
"directories": {
"lib": "./lib"
},
2019-05-13 07:14:51 +00:00
"files": [
2019-07-10 02:46:01 +00:00
"lib/",
2019-05-13 07:14:51 +00:00
"index.js"
],
"scripts": {
"lint": "standard",
"test": "jest"
},
"engines": {
2021-04-25 08:45:39 +00:00
"node": ">= 12.13.0"
2016-05-26 11:09:41 +00:00
},
2019-07-18 08:04:26 +00:00
"author": "curben",
"license": "MIT",
2019-07-18 08:04:26 +00:00
"homepage": "https://github.com/curbengh/hexo-yam",
2019-08-06 02:35:16 +00:00
"repository": "curbengh/hexo-yam",
2016-05-26 11:09:41 +00:00
"dependencies": {
"clean-css": "^5.1.2",
"html-minifier": "^4.0.0",
2019-07-10 02:20:23 +00:00
"micromatch": "^4.0.2",
"minify-xml": "^3.2.0",
"svgo": "^2.4.0",
"terser": "^5.3.0"
2016-05-26 11:09:41 +00:00
},
"devDependencies": {
"hexo": "^5.1.1",
"jest": "^27.2.5",
"standard": "^16.0.1"
},
2016-05-26 11:09:41 +00:00
"keywords": [
"html",
"js",
"css",
2019-04-23 07:59:35 +00:00
"svg",
2020-01-03 01:37:33 +00:00
"xml",
"json",
2018-09-28 07:43:54 +00:00
"minify",
"compress",
"gzip",
2018-09-30 07:30:32 +00:00
"brotli",
2018-09-28 07:43:54 +00:00
"hexo-yam",
"hexo"
],
"jest": {
"clearMocks": true,
"collectCoverage": true,
2019-12-29 04:12:19 +00:00
"coverageDirectory": "./coverage/",
"testEnvironment": "node"
}
2016-05-26 11:09:41 +00:00
}