-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.8 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
{
"name": "md-index-generator",
"description": "Parses a markdown document and creates an index based on headings",
"version": "2.1.1",
"author": "Alessio Michelini",
"bin": {
"md-index-generator": "./bin/run"
},
"bugs": "https://github.com/experimental/markdown-index-generator/issues",
"dependencies": {
"commander": "^12.1.0",
"tslib": "^2.6.3"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.2",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.8.0",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/jest": "^29.5.12",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"auto-changelog": "^2.4.0",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"nyc": "^17.0.0",
"ts-jest": "^29.2.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"engines": {
"node": ">=18.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",
"build": "tsc -b",
"build:watch": "tsc -b --watch",
"prepack": "rm -rf lib && npm run build",
"test": "jest --verbose",
"test:watch": "jest --verbose --watch",
"changelog": "auto-changelog",
"version": "auto-changelog -p && git add CHANGELOG.md",
"eslint": "eslint . --config eslint.config.mjs",
"coverage": "nyc --reporter=lcov npm run test"
},
"types": "lib/index.d.ts",
"auto-changelog": {
"output": "CHANGELOG.md",
"template": "changelog.tpl.hbs",
"unreleased": true,
"commitLimit": 10
}
}