-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.09 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
{
"name": "@erkkah/nomnomd",
"version": "0.9.0",
"description": "Markdown with diagrams made easy",
"keywords": [
"markdown",
"nomnoml",
"diagrams"
],
"author": {
"name": "Erik Agsjö"
},
"repository": {
"type": "git",
"url": "https://github.com/erkkah/nomnomd.git"
},
"main": "./lib/src/index.js",
"bin": {
"nomnomd": "bin/nomnomd",
"@erkkah/nomnomd": "bin/nomnomd"
},
"license": "MIT",
"files": [
"bin",
"lib"
],
"scripts": {
"build": "tsc",
"prepack": "npm run build"
},
"dependencies": {
"@kaishuu0123/markdown-it-fence": "^1.0.1",
"arg": "^5.0.1",
"highlight.js": "^11.2.0",
"markdown-it": "^12.2.0",
"markdown-it-emoji": "^2.0.0",
"markdown-it-front-matter": "^0.2.3",
"mime": "^2.5.2",
"nomnoml": "^1.4.0",
"pupa": "^2.1.1",
"source-map-support": "^0.5.19"
},
"devDependencies": {
"@types/markdown-it": "^12.2.0",
"@types/markdown-it-emoji": "^2.0.2",
"@types/mime": "^2.0.3",
"@types/node": "^16.6.1",
"ts-node": "^10.2.1",
"typescript": "^4.3.5"
}
}