-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.19 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
{
"name": "markshell",
"version": "1.6.0",
"description": "markshell allows you to output any markdown file formatted and style to the console",
"keywords": [
"markdown",
"shell",
"nodejs",
"chalk",
"CLI",
"CLI addons",
"node",
"console",
"output",
"shell extension",
"CLI development"
],
"main": "lib/index.js",
"lib": "lib/index.js",
"bin": {
"markshell": "./bin/markshell.js"
},
"homepage": "https://github.com/stfbauer/markshell#readme",
"scripts": {
"test": "node test/index.js",
"testRun": "node ./lib/index.js",
"update-types": "./tools/typings.sh"
},
"files": [
"lib",
"bin",
"docs"
],
"funding": "https://github.com/sponsors/StfBauer",
"bugs": {
"url": "https://github.com/stfbauer/markshell/issues"
},
"author": "Stefan Bauer",
"license": "MIT",
"dependencies": {
"@types/prismjs": "1.16",
"chalk": "^4.1.2",
"jsdom": "^16.7.0",
"prismjs": "^1.25.0",
"wrap-ansi": "^7.0.0"
},
"devDependencies": {
"@types/node": "^10.17.60",
"@types/prismjs": "^1.16.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stfbauer/markshell.git"
}
}