forked from treasonx/grunt-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.38 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
52
53
54
55
56
57
58
59
60
{
"name": "grunt-markdown",
"description": "Compile markdown to html. GFM and code highlighting support!",
"version": "0.6.1",
"homepage": "https://github.com/treasonx/grunt-markdown",
"author": {
"name": "James Morrin",
"email": "[email protected]"
},
"contributors": [
{
"name": "Thomas Welton",
"email": "[email protected]"
},
{
"name": "Matt Dawson",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "git://github.com/treasonx/grunt-markdown"
},
"bugs": {
"url": "https://github.com/treasonx/grunt-markdown/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/treasonx/grunt-markdown/blob/master/LICENSE-MIT"
}
],
"main": "grunt.js",
"engines": {
"node": "*"
},
"scripts": {
"test": "grunt test"
},
"devDependencies": {
"grunt": "~0.4.0",
"grunt-contrib-jshint": "~0.3.0",
"grunt-contrib-nodeunit": "~0.1.2",
"grunt-contrib-watch": "~0.3.1",
"mocha": "~1.18.2",
"cheerio": "~0.12.0",
"grunt-mocha-test": "~0.10.2",
"chai": "~1.9.1",
"grunt-mocha-istanbul": "~1.4.1",
"grunt-contrib-connect": "~0.7.1"
},
"keywords": [
"gruntplugin"
],
"dependencies": {
"highlight.js": "~7.3.0",
"marked": "git://github.com/nagiek/marked.git",
"grunt-lib-contrib": "~0.3.0"
}
}