-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
48 lines (48 loc) · 1.06 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
{
"name": "hexo-front-matter",
"version": "4.2.1",
"description": "Front-matter parser.",
"main": "dist/front_matter",
"scripts": {
"prepublish ": "npm run clean && npm run build",
"build": "tsc -b",
"clean": "tsc -b --clean",
"eslint": "eslint .",
"test": "mocha",
"test-cov": "c8 --reporter=lcovonly npm run test"
},
"files": [
"dist/**"
],
"types": "./dist/front_matter.d.ts",
"repository": "hexojs/hexo-front-matter",
"keywords": [
"front-matter",
"front matter",
"yaml",
"yml",
"hexo",
"json"
],
"author": "Tommy Chen <[email protected]> (http://zespia.tw)",
"license": "MIT",
"dependencies": {
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/js-yaml": "^4.0.5",
"@types/mocha": "^10.0.6",
"@types/node": "^18.11.7",
"c8": "^10.1.2",
"chai": "^5.0.0",
"eslint": "^8.23.1",
"eslint-config-hexo": "^5.0.0",
"mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=16"
}
}