forked from Topdoc/grunt-topdoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.75 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "grunt-topdoc",
"description": "grunt plugin to build usage guides from css with Topdoc.",
"version": "0.3.0",
"homepage": "https://github.com/topcoat/grunt-topdoc",
"author": {
"name": "@dam",
"email": "[email protected]",
"url": "http://topcoat.io"
},
"topdoc": {
"source": "test/fixtures/",
"destination": "tmp/output/",
"template": "node_modules/topdoc-theme",
"templateData": {
"title": "Topcoat",
"subtitle": "CSS for clean and fast web apps",
"download": {
"url": "#",
"label": "Download version 0.4"
},
"homeURL": "http://topcoat.io",
"siteNav": [
{
"url": "http://www.topcoat.io/topcoat",
"text": "Demo"
},
{
"url": "http://bench.topcoat.io/",
"text": "Benchmarks"
},
{
"url": "http://topcoat.io/blog",
"text": "Blog"
}
]
}
},
"repository": {
"type": "git",
"url": "git://github.com/topcoat/grunt-topdoc.git"
},
"bugs": {
"url": "https://github.com/topcoat/grunt-topdoc/issues"
},
"licenses": [
{
"type": "Apache",
"url": "https://github.com/topcoat/grunt-topdoc/blob/master/LICENSE"
}
],
"main": "Gruntfile.js",
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "grunt test"
},
"dependencies": {
"topdoc": "0.4.0"
},
"devDependencies": {
"grunt-contrib-jshint": "~0.4.3",
"grunt-contrib-clean": "~0.4.1",
"grunt": "~0.4.1",
"grunt-zip": "~0.9.2",
"debug": "~0.7.2",
"grunt-contrib-nodeunit": "~0.2.0",
"grunt-contrib-stylus": "~0.5.1",
"grunt-simple-mocha": "~0.4.0",
"topdoc-theme": "~0.4.0"
},
"keywords": [
"gruntplugin"
]
}