-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.21 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.21 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
{
"name": "markdown-reader-deluxe",
"version": "1.1.0",
"description": "a great markdown-reader, to you know... read markdown.",
"main": "./bin/index.js",
"bin": {
"markdown-reader-deluxe": "./bin/index.js"
},
"scripts": {
"build": "npx tsc",
"start": "node bin/index.js -p 8080",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q bin/index.js\""
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/rasmus-ob/markdown-reader-deluxe.git"
},
"keywords": [
"markdown",
"markdown-reader",
"cli",
"npmtool",
"md",
"dev-tools",
"md-reader",
"tool",
"development",
"easy-to-use",
"easy",
"great"
],
"author": "Rasmus Olofsson Burman",
"license": "ISC",
"bugs": {
"url": "https://github.com/rasmus-ob/markdown-reader-deluxe/issues"
},
"homepage": "https://github.com/rasmus-ob/markdown-reader-deluxe#readme",
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^20.4.7",
"@types/showdown": "^2.0.1",
"concurrently": "^8.2.0",
"nodemon": "^3.0.1",
"typescript": "^5.1.6"
},
"dependencies": {
"commander": "^11.0.0",
"express": "^4.18.2",
"showdown": "^2.1.0"
}
}