-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.14 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.14 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
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "md-index-generator",
"description": "Parses a markdown document and creates an index based on headings",
"version": "3.2.4",
"author": "Alessio Michelini",
"type": "module",
"bin": {
"md-index-generator": "./bin/run"
},
"bugs": "https://github.com/experimental/markdown-index-generator/issues",
"dependencies": {
"commander": "^14.0.3",
"tslib": "^2.8.1",
"tsx": "^4.21.0"
},
"devDependencies": {
"@babel/preset-env": "^7.29.2",
"@eslint/js": "^9.23.0",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/jest": "^30.0.0",
"@types/node": "^24.12.0",
"@typescript-eslint/parser": "^8.28.0",
"auto-changelog": "^2.5.0",
"eslint": "^9.39.4",
"eslint-plugin-import": "^2.32.0",
"globals": "^17.4.0",
"jest": "^30.3.0",
"nyc": "^18.0.0",
"prettier": "^3.8.1",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.2"
},
"engines": {
"node": ">=22.0.0"
},
"files": [
"/bin",
"/lib"
],
"homepage": "https://github.com/darkmavis1980/markdown-index-generator",
"keywords": [
"markdown",
"index"
],
"license": "MIT",
"main": "lib/index.js",
"repository": "darkmavis1980/markdown-index-generator",
"scripts": {
"posttest": "npm run eslint && npm run prettier:check",
"build": "tsc -b",
"build:watch": "tsc -b --watch",
"prepack": "rm -rf lib && npm run build",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --verbose",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --verbose --watch",
"changelog": "auto-changelog",
"version": "auto-changelog -p && git add CHANGELOG.md",
"eslint": "npx eslint -c eslint.config.mjs",
"prettier:check": "npx prettier ./src/**/*.ts ./test/**/*.test.ts --check",
"prettier:write": "npx prettier ./src/**/*.ts ./test/**/*.test.ts --write",
"coverage": "NODE_OPTIONS=--experimental-vm-modules nyc --reporter=lcov npm run test"
},
"types": "lib/index.d.ts",
"auto-changelog": {
"output": "CHANGELOG.md",
"template": "changelog.tpl.hbs",
"unreleased": true,
"commitLimit": 10
}
}