UNPKG

hexo-fs

Version:

File system module for Hexo.

56 lines (55 loc) 1.36 kB
{ "name": "hexo-fs", "version": "5.0.0", "description": "File system module for Hexo.", "main": "./dist/fs.js", "scripts": { "prepublish ": "npm install && npm run clean && npm run build", "build": "tsc -b", "clean": "tsc -b --clean", "eslint": "eslint .", "test": "mocha test/index.ts --require ts-node/register", "test-cov": "c8 --reporter=lcovonly npm run test" }, "files": [ "dist/**" ], "types": "./dist/fs.d.ts", "repository": "hexojs/hexo-fs", "homepage": "https://hexo.io/", "keywords": [ "file", "file system", "fs", "hexo" ], "author": "Tommy Chen <tommy351@gmail.com> (https://zespia.tw)", "maintainers": [ "Abner Chou <hi@abnerchou.me> (https://abnerchou.me)" ], "license": "MIT", "dependencies": { "bluebird": "^3.7.2", "chokidar": "^4.0.3", "graceful-fs": "^4.2.10", "hexo-util": "^3.3.0" }, "devDependencies": { "@types/bluebird": "^3.5.36", "@types/chai": "^4.3.12", "@types/graceful-fs": "^4.1.5", "@types/mocha": "^10.0.6", "@types/node": "^22.10.2", "c8": "^10.1.3", "chai": "^4.3.6", "eslint": "^8.23.0", "eslint-config-hexo": "^5.0.0", "eslint-plugin-import": "^2.31.0", "mocha": "^11.0.1", "ts-node": "^10.9.1", "typescript": "^5.7.2" }, "engines": { "node": ">=18" } }