-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.42 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
56
57
58
59
60
{
"name": "hexo-breadcrumb",
"version": "1.2.4",
"description": "Generate breadcrumb for Hexo",
"main": "index.js",
"types": "global.d.ts",
"scripts": {
"build": "tsc -p tsconfig.json && npm run format",
"build:watch": "tsc --watch",
"lint": "eslint .",
"format": "prettier '**/*.{js,ts,md,yml,json}' --write",
"version": "npm run lint",
"prepare": "husky || true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/msudgh/hexo-breadcrumb.git"
},
"keywords": [
"breadcrumb",
"hexojs",
"hexo",
"seo"
],
"author": "Masoud Ghorbani <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/msudgh/hexo-breadcrumb/issues"
},
"homepage": "https://github.com/msudgh/hexo-breadcrumb",
"engines": {
"node": ">=7.5.0"
},
"devDependencies": {
"@types/hexo": "3.8.12",
"@typescript-eslint/eslint-plugin": "8.6.0",
"@typescript-eslint/parser": "8.6.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-import": "2.30.0",
"eslint-plugin-prettier": "5.2.1",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"typescript": "5.5.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix"
],
"*.{js,ts,md,yml,json}": [
"npm run format"
]
}
}