-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.21 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.21 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "markdown-it-anchor-sections",
"version": "1.0.1",
"description": "Create anchor sections from markdown headers",
"license": "Apache-2.0",
"author": "Cassondra Roberts <castastrophe@users.noreply.github.com> (https://allons-y.llc)",
"contributors": [
"Arve Seljebu"
],
"homepage": "https://github.com/castastrophe/markdown-it-anchor-sections#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/castastrophe/markdown-it-anchor-sections.git"
},
"bugs": {
"url": "https://github.com/castastrophe/markdown-it-anchor-sections/issues"
},
"type": "module",
"main": "index.js",
"scripts": {
"coverage": "c8 yarn test",
"prepack": "pinst --disable",
"postinstall": "husky || true",
"postpack": "pinst --enable",
"prepublish": "yarn test",
"release": "semantic-release",
"postpublish": "git push && git push --tags",
"test": "node test.js"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^14.1.0",
"c8": "^11.0.0",
"eslint": "^10.2.1",
"html-minifier": "^4.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"markdown-it": "^14.1.1",
"markdown-it-attrs": "^4.3.1",
"pinst": "^3.0.0",
"prettier": "^3.8.3",
"prettier-package-json": "^2.8.0",
"semantic-release": "^25.0.3"
},
"files": [
"CHANGELOG.md",
"README.md",
"LICENSE",
"index.js"
],
"keywords": [
"markdown-it",
"markdown-it-plugin"
],
"engines": {
"node": ">=24"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/castastrophe"
},
{
"type": "buy-me-a-coffee",
"url": "https://www.buymeacoffee.com/castastrophe"
}
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"packageManager": "yarn@4.14.1"
}