forked from imcuttle/remark-heading-id
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.72 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@effector/remark-heading-id",
"version": "2.0.1",
"main": "index.js",
"types": "index.d.ts",
"publishConfig": {
"access": "public"
},
"description": "The remark plugin for supporting custom heading id also including default id",
"author": "imcuttle <[email protected]>",
"contributors": [
"Sergey Sova <[email protected]>"
],
"scripts": {
"test": "jest",
"prepublishOnly": "pnpm test",
"version": "pnpm run changelog",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
},
"sideEffects": false,
"engines": {
"node": ">=8"
},
"keywords": [
"imcuttle",
"remark",
"effector",
"heading",
"id",
"remark-heading-id",
"custom"
],
"license": "MIT",
"repository": "effector/remark-heading-id",
"jest": {
"testMatch": [
"**/__test{s,}__/*.(spec|test).{t,j}s{x,}"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"@types/jest": "^24.0.9",
"@types/mdast": "^3.0.11",
"conventional-changelog-cli": "^2.0.12",
"husky": "^1.3.1",
"jest": "^23.6.0",
"prettier": "^1.16.4",
"pretty-quick": "^1.10.0",
"rehype-stringify": "^5.0.0",
"remark": "^10.0.1",
"remark-rehype": "^4.0.0",
"unified": "^11.0.4"
},
"peerDependencies": {
"@types/mdast": "^3.0.11",
"unified": "^11.0.4"
},
"dependencies": {
"lodash": "^4.17.21",
"unist-util-visit": "^1.4.0"
}
}