-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
118 lines (118 loc) · 2.76 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "@agentofuser/rehype-section",
"publishConfig": {
"access": "public"
},
"version": "1.0.5",
"description": "Wrap headings and their content into (nested) sections",
"license": "MIT",
"keywords": [
"rehype",
"rehype-plugin",
"html",
"plugin",
"section",
"heading",
"wrap"
],
"repository": "agentofuser/rehype-section",
"bugs": "https://github.com/agentofuser/rehype-section/issues",
"author": "Agent of User <git@agentofuser.com> (https://agentofuser.com)",
"contributors": [
"Agent of User <git@agentofuser.com> (https://agentofuser.com)"
],
"main": "dist/index.js",
"umd:main": "dist/rehype-section.umd.production.js",
"module": "dist/rehype-section.es.production.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsdx build",
"commit": "git-cz",
"commit:retry": "git-cz --retry",
"semantic-release": "semantic-release",
"start": "tsdx watch",
"test": "tsdx test"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/git"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"header-max-length": [
2,
"always",
50
],
"body-max-line-length": [
2,
"always",
72
],
"footer-max-line-length": [
2,
"always",
72
],
"scope-empty": [
2,
"never"
]
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"peerDependencies": {},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"prettier": {
"printWidth": 79,
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"proseWrap": "always"
},
"devDependencies": {
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.0.0",
"@commitlint/travis-cli": "^8.0.0",
"@semantic-release/commit-analyzer": "^6.1.0",
"@semantic-release/git": "^7.0.8",
"@semantic-release/github": "^5.2.10",
"@semantic-release/npm": "^5.1.7",
"@semantic-release/release-notes-generator": "^7.1.4",
"@types/jest": "^24.0.13",
"commitizen": "^3.1.1",
"cz-conventional-changelog": "^2.1.0",
"husky": "^2.3.0",
"prettier": "^1.17.1",
"pretty-quick": "^1.11.0",
"rehype": "^8.0.0",
"semantic-release": "^15.13.12",
"tsdx": "^0.6.1",
"tslib": "^1.9.3",
"typescript": "^3.5.1"
},
"dependencies": {
"hast-util-heading": "^1.0.3",
"hastscript": "^5.1.0"
}
}