This repository has been archived by the owner on Jun 21, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.12 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "markdowndoc",
"version": "0.1.0",
"description": "A documentation tool for Markdown.",
"author": {
"name": "Daniel Bannert",
"email": "[email protected]"
},
"contributors": [
{
"name": "Timothy Groves",
"url": "http://www.greatwhiteark.com",
"email": "[email protected]"
}
],
"homepage": "https://github.com/MarkdownDoc/markdowndocs",
"repository": {
"type": "git",
"url": "https://github.com/MarkdownDoc/markdowndocs.git"
},
"directories": {
"tests": "tests"
},
"scripts": {
"test": "grunt test -v --stack -d"
},
"bugs": {
"url": "https://github.com/MarkdownDoc/markdowndocs/issues"
},
"license": "MIT",
"engines": {
"node": ">= 0.10.0"
},
"files": [
"bin",
"dist",
"index.js",
"CHANGELOG.md",
"LICENCE.md",
"README.md"
],
"bin": {
"markdowndoc": "./bin/markdowndoc"
},
"devDependencies": {
"babel": "^6.3.26",
"babel-eslint": "^5.0.0-beta6",
"chai": "^3.4.1",
"eslint-config-airbnb": "4.0.0",
"eslint-plugin-react": "^3.16.1",
"grunt": "^0.4.5",
"grunt-babel": "^6.0.0",
"grunt-bump": "^0.7.0",
"grunt-cli": "^0.1.13",
"grunt-contrib-clean": "^0.7.0",
"grunt-contrib-jshint": "^0.12.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-eslint": "^17.3.1",
"grunt-jscs": "^2.6.0",
"grunt-jsonlint": "^1.0.7",
"grunt-mocha-cli": "^2.0.0",
"jshint-stylish": "^2.1.0",
"load-grunt-config": "^0.19.1",
"load-grunt-tasks": "^3.4.0",
"time-grunt": "^1.3.0"
},
"keywords": [
"grunt",
"bin",
"front-end",
"development",
"dev",
"build",
"generator",
"generate",
"tool",
"doc",
"documentation",
"comments",
"theme"
],
"dependencies": {
"babel-runtime": "^6.3.19",
"chalk": "^1.1.1",
"config-file": "^0.3.2",
"docopt": "^0.6.2",
"fs-extra": "^0.26.4",
"log": "^1.4.0",
"markdowndoc-markdown-parser": "^0.2.0",
"markdowndoc-theme-default": "^0.6.0",
"mkdirp": "^0.5.1",
"rmdir": "^1.2.0",
"set-value": "^0.3.3",
"update-notifier": "^0.6.0"
}
}