hexo/node_modules/hexo-front-matter/package.json

43 lines
886 B
JSON
Raw Normal View History

2023-10-03 11:14:36 +08:00
{
"name": "hexo-front-matter",
"version": "3.0.0",
"description": "Front-matter parser.",
"main": "lib/front_matter",
"scripts": {
"eslint": "eslint .",
"test": "mocha test/index.js",
"test-cov": "nyc --reporter=lcovonly npm run test"
},
"directories": {
"lib": "./lib"
},
"files": [
"lib/"
],
"repository": "hexojs/hexo-front-matter",
"keywords": [
"front-matter",
"front matter",
"yaml",
"yml",
"hexo",
"json"
],
"author": "Tommy Chen <tommy351@gmail.com> (http://zespia.tw)",
"license": "MIT",
"dependencies": {
"js-yaml": "^4.1.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^8.0.1",
"eslint-config-hexo": "^4.0.0",
"mocha": "^9.1.3",
"moment": "^2.24.0",
"nyc": "^15.0.0"
},
"engines": {
"node": ">=12.13.0"
}
}