-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
55 lines (55 loc) · 1.33 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"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 <[email protected]> (https://zespia.tw)",
"maintainers": [
"Abner Chou <[email protected]> (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"
}
}