-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.6 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
{
"name": "madr-tools",
"version": "1.2.4",
"description": "Node.js CLI to to create and manage Markdown Architectural Decision Records (MADR)",
"type": "module",
"main": "dist/cli.js",
"files": [
"dist",
"assets"
],
"scripts": {
"prepare": "husky",
"build": "rimraf dist && esbuild ./src/cli.ts --outfile=dist/cli.js --bundle --platform=node --target=node20 --format=esm --packages=external --minify",
"lint": "tsc && eslint src/**",
"prettification-check": "prettier . --check --ignore-unknown"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nioe/madr-tools.git"
},
"keywords": [
"adr",
"madr",
"cli",
"architecture",
"decision",
"documentation",
"docs",
"markdown"
],
"author": "Nicolas Oeschger",
"license": "ISC",
"bugs": {
"url": "https://github.com/nioe/madr-tools/issues"
},
"homepage": "https://github.com/nioe/madr-tools#readme",
"bin": {
"madr": "./dist/cli.js"
},
"peerDependencies": {
"chalk": "^5.3.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"@eslint/js": "9.17.0",
"@types/eslint__js": "8.42.3",
"@types/node": "22.10.2",
"@types/yargs": "17.0.33",
"@typescript-eslint/eslint-plugin": "8.18.0",
"@typescript-eslint/parser": "8.18.0",
"chalk": "5.3.0",
"esbuild": "0.24.0",
"eslint": "9.16.0",
"husky": "9.1.7",
"prettier": "3.4.2",
"rimraf": "6.0.1",
"typescript": "5.7.2",
"typescript-eslint": "8.18.0",
"yargs": "17.7.2"
}
}