-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 914 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 914 Bytes
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
{
"name": "mdtail",
"version": "1.0.0",
"description": "A simple terminal app that displays and live-refreshes markdown files.",
"main": "index.js",
"bin": {
"mdtail": "./index.js"
},
"scripts": {
"start": "node index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"keywords": [
"markdown",
"terminal",
"cli",
"live-reload",
"file-watcher",
"markdown-viewer",
"developer-tools",
"documentation"
],
"author": "Shawn Wilkinson",
"license": "MIT",
"type": "commonjs",
"repository": {
"type": "git",
"url": "git+https://github.com/super3/mdtail.dev.git"
},
"bugs": {
"url": "https://github.com/super3/mdtail.dev/issues"
},
"homepage": "https://github.com/super3/mdtail.dev#readme",
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"jest": "^30.0.5"
}
}