-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.06 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
{
"name": "grunt-markdown-pdf",
"description": "Grunt plugin to convert Markdown documents to PDF",
"version": "4.0.0",
"homepage": "https://github.com/alanshaw/grunt-markdown-pdf",
"author": {
"name": "Alan Shaw",
"email": "alan138@gmail.com"
},
"repository": {
"type": "git",
"url": "git://github.com/alanshaw/grunt-markdown-pdf.git"
},
"bugs": {
"url": "https://github.com/alanshaw/grunt-markdown-pdf/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/alan/shaw/grunt-markdown-pdf/blob/master/LICENSE-MIT"
}
],
"main": "Gruntfile.js",
"engines": {
"node": "~0.10.0"
},
"scripts": {
"test": "grunt test"
},
"devDependencies": {
"grunt": "^1.0.4",
"grunt-cli": "^1.3.2",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-nodeunit": "^2.0.0"
},
"peerDependencies": {
"grunt": ">=0.4.5"
},
"keywords": [
"gruntplugin",
"markdown",
"pdf",
"convert",
"template"
],
"dependencies": {
"async": "^3.1.0",
"markdown-pdf": "^9.0.0"
}
}