-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.58 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 2.58 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "markedpp",
"version": "2.0.3",
"description": "Preprocessor for markdown files",
"keywords": [
"autonumber ordered lists",
"include files",
"markdown",
"number headings",
"preprocessor",
"table of contents",
"toc"
],
"homepage": "https://github.com/commenthol/markedpp",
"bugs": {
"url": "https://github.com/commenthol/markedpp/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/commenthol/markedpp.git"
},
"license": "MIT",
"author": "commenthol <commenthol@gmail.com>",
"maintainers": [
"commenthol <commenthol@gmail.com>"
],
"sideEffects": false,
"type": "module",
"exports": {
".": {
"browser": "./dist/browser.mjs",
"require": "./dist/index.cjs",
"default": "./src/index.js"
}
},
"bin": {
"markedpp": "./bin/markedpp.js"
},
"man": "./man/markedpp.1",
"files": [
"bin",
"dist",
"man",
"src"
],
"scripts": {
"all": "npm-run-all clean lint test build",
"build": "rollup -c rollup.conf.mjs",
"clean": "rimraf doc coverage .nyc_output dist lib",
"c8": "c8 -r text -r html npm test",
"doc": "mkdir -p doc && jsdox -o doc lib/*.js",
"lint": "eslint --ext .js .",
"man": "make man",
"readme": "make readme",
"test": "mocha",
"test:browser": "make browser"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie"
],
"dependencies": {
"asyncc": "^2.0.9",
"emoji-regex": "^10.4.0",
"html-entities": "^2.6.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^16.0.1",
"@tryghost/kg-markdown-html-renderer": "^3.0.0",
"c8": "^10.1.3",
"cheerio": "^1.1.2",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-standard": "^5.0.0",
"express": "^5.1.0",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.2.0",
"marked": "^5.1.2",
"mocha": "^11.7.1",
"npm-run-all": "^4.1.5",
"rehype-format": "^5.0.1",
"rehype-stringify": "^10.0.1",
"remark-html": "^16.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"remark-slug": "^7.0.1",
"rimraf": "^6.0.1",
"rollup": "^4.46.3",
"superagent": "^10.2.3",
"unified": "^11.0.5"
},
"engines": {
"node": ">=18.0.0"
},
"c4uIgnore": {
"@tryghost/kg-markdown-html-renderer": "^3",
"eslint": "^8",
"eslint-plugin-n": "^16",
"eslint-plugin-promise": "^6",
"marked": "^5",
"remark-slug": "^7"
}
}