-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.85 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
{
"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 --ts",
"coverage": "tap --coverage-report=html",
"prepare": "node prepare.js || 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": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@istanbuljs/esm-loader-hook": "^0.2.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": "^11.0.0",
"@semantic-release/npm": "^12.0.0",
"@semantic-release/release-notes-generator": "^14.0.0",
"@types/node": "^22.0.0",
"@types/tap": "^18.0.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^9.0.6",
"is-ci": "^3.0.1",
"lint-staged": "^15.0.1",
"markdown-toc": "^1.2.0",
"nyc": "^17.0.0",
"prettier": "^3.0.0",
"standard-version": "^9.3.2",
"tap": "^21.0.0",
"ts-node": "^10.2.1",
"typescript": "^5.0.4"
}
}