-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.55 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@niquenen/gfm-toc",
"author": "niquenen",
"version": "0.1.3",
"type": "module",
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"homepage": "https://github.com/niquenen/gfm-toc#readme",
"license": "MIT",
"description": "Simple tool to create table of contents.",
"main": "./dist/index.js",
"bin": {
"gfm-toc": "dist/index.js"
},
"private": false,
"scripts": {
"postprepare": "is-ci || husky",
"start": "npm run build && node ./dist/index.js",
"build": "tsc",
"clean": "rimraf -g \"*(.|*.)tsbuildinfo\" dist",
"fclean": "npm run clean && rimraf node_modules",
"lint": "eslint",
"test": ""
},
"repository": {
"type": "git",
"url": "git://github.com/niquenen/gfm-toc.git"
},
"keywords": [
"gfm",
"toc"
],
"bugs": {
"url": "https://github.com/niquenen/gfm-toc/issues"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/@niquenen"
},
"dependencies": {
"dom-serializer": "^2.0.0",
"htmlparser2": "^9.1.0",
"js-beautify": "^1.15.1",
"mdast-util-from-markdown": "^2.0.1",
"mdast-util-gfm": "^3.0.0",
"mdast-util-to-markdown": "^2.1.0",
"micromark-extension-gfm": "^3.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@types/js-beautify": "^1.14.3",
"@types/mdast": "^4.0.4",
"@types/node": "^22.6.1",
"esbuild": "^0.24.0",
"eslint": "^9.11.1",
"husky": "^9.1.6",
"is-ci": "^3.0.1",
"rimraf": "^6.0.1",
"typescript": "^5.6.2",
"typescript-eslint": "^8.7.0"
}
}