-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
51 lines (51 loc) · 1.31 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": "grunt-md2html",
"description": "Small Grunt MultiTask to convert Markdown files to HTML",
"version": "0.6.1",
"homepage": "https://github.com/bylexus/grunt-md2html",
"author": {
"name": "Alexander Schenkel",
"email": "alex@alexi.ch",
"url": "http://www.alexi.ch/"
},
"repository": {
"type": "git",
"url": "https://github.com/bylexus/grunt-md2html.git"
},
"bugs": {
"url": "https://github.com/bylexus/grunt-md2html/issues"
},
"license": "MIT",
"main": "Gruntfile.js",
"engines": {
"node": ">= 12.0.0"
},
"scripts": {
"test": "grunt md2html && jasmine"
},
"dependencies": {
"clean-css": "^5.2.2",
"highlight.js": "^11.3.1",
"marked": "^4.0.0",
"node-fetch": "^2.6.6"
},
"devDependencies": {
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^4.0.0",
"grunt": "^1.4.1",
"grunt-cli": "^1.4.3",
"grunt-contrib-clean": "^2.0.0",
"jasmine": "^3.10.0",
"prettier": "^2.5.1"
},
"keywords": [
"gruntplugin",
"markdown",
"html",
"markdown2html",
"plantuml",
"highlightjs"
]
}