forked from uhop/grunt-slice-front
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.56 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.56 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
52
53
54
55
56
57
58
59
60
{
"name": "grunt-slice-front",
"description": "Slices a Markdown file in segments separating a front matter in YAML, generates HTML, and applies a template to the result. Useful to generate web pages.",
"version": "1.0.2",
"homepage": "https://github.com/uhop/grunt-slice-front",
"author": {
"name": "Eugene Lazutkin",
"email": "eugene.lazutkin@gmail.com",
"url": "http://lazutkin.com/"
},
"github": "https://github.com/uhop/grunt-slice-front",
"repository": {
"type": "git",
"url": "git://github.com/uhop/grunt-slice-front.git"
},
"bugs": {
"url": "https://github.com/uhop/grunt-slice-front/issues"
},
"license": "BSD-3-Clause",
"main": "Gruntfile.js",
"directories": {
"test": "tests"
},
"engines": {
"node": ">= 0.12",
"iojs": ">=1.8"
},
"scripts": {
"test": "grunt test"
},
"dependencies": {
"highlight.js": "^9.0.0",
"js-yaml": "^3.7.0",
"lodash.template": "^4.4.0",
"markdown-it": "^8.2.2",
"markdown-it-container": "^2.0.0"
},
"devDependencies": {
"grunt": "^1.0.1",
"markdown-it-abbr": "^1.0.4",
"markdown-it-checkbox": "^1.1.0",
"markdown-it-deflist": "^2.0.1",
"markdown-it-emoji": "^1.3.0",
"markdown-it-footnote": "^3.0.1",
"markdown-it-ins": "^2.0.0",
"markdown-it-mark": "^2.0.0",
"markdown-it-smartarrows": "^1.0.1",
"markdown-it-sub": "^1.0.0",
"markdown-it-sup": "^1.0.0",
"markdown-it-video": "^0.4.0"
},
"keywords": [
"gruntplugin",
"markdown",
"slice",
"slicer",
"template",
"front matter"
]
}