-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathpackage.json
67 lines (67 loc) · 1.49 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
67
{
"name": "marked-terminal",
"version": "7.2.1",
"description": "A custom render for marked to output to the Terminal",
"main": "./index.cjs",
"browser": "./index.js",
"exports": {
"node": {
"import": "./index.js",
"require": "./index.cjs"
},
"default": "./index.js"
},
"type": "module",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"build": "rollup -c",
"prepack": "npm run build",
"test": "cross-env FORCE_HYPERLINK=0 mocha tests/*.js --reporter spec"
},
"files": [
"index.js",
"index.cjs"
],
"keywords": [
"marked",
"render",
"terminal",
"markdown",
"markdown-to-terminal"
],
"author": "Mikael Brevik",
"license": "MIT",
"peerDependencies": {
"marked": ">=1 <16"
},
"dependencies": {
"ansi-escapes": "^7.0.0",
"ansi-regex": "^6.1.0",
"chalk": "^5.4.1",
"cli-highlight": "^2.1.11",
"cli-table3": "^0.6.5",
"node-emoji": "^2.2.0",
"supports-hyperlinks": "^3.1.0"
},
"directories": {
"example": "example"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"cross-env": "^7.0.3",
"marked": "^15.0.0",
"mocha": "^11.0.1",
"rollup": "^4.29.1"
},
"repository": {
"type": "git",
"url": "https://github.com/mikaelbr/marked-terminal.git"
},
"bugs": {
"url": "https://github.com/mikaelbr/marked-terminal/issues"
},
"homepage": "https://github.com/mikaelbr/marked-terminal"
}