-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.56 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.56 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
{
"name": "@scdev/declarative-markdown",
"version": "1.3.2",
"description": "This packages aims to help you generate markdown in a declarative way!",
"main": "./dist/index.js",
"types": "./types/index.d.ts",
"repository": {
"url": "https://github.com/simonecorsi/declarative-markdown"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"build": "tsc",
"test": "tap",
"coverage": "tap --coverage-report=html",
"prepare": "node prepare.mjs || echo 'Skipping prepare'"
},
"keywords": [
"markdown",
"generator",
"declarative",
"javascript",
"typescript",
"programmatic",
"md",
"js",
"esnext",
"node",
"npm"
],
"author": "Simone Corsi <simonecorsi.dev@gmail.com>",
"license": "MIT",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@biomejs/biome": "^2.0.0",
"@commitlint/cli": "^20.0.0",
"@commitlint/config-conventional": "^20.0.0",
"@saithodev/semantic-release-backmerge": "^4.0.1",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.0",
"@semantic-release/npm": "^13.0.0",
"@semantic-release/release-notes-generator": "^14.0.0",
"@types/node": "^25.0.0",
"@types/tap": "^18.0.0",
"lefthook": "^2.0.0",
"markdown-toc": "^1.2.0",
"tap": "^21.0.0",
"ts-node": "^10.2.1",
"typescript": "^5.0.4"
}
}