-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.11 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.11 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
{
"name": "documentative",
"version": "0.4.8",
"description": "a tool for generating docs from markdown",
"keywords": [
"documentation-generator",
"markdown",
"navigation",
"precompile"
],
"main": "index.js",
"scripts": {
"test": "echo \"no test specified\"",
"serve": "documentative-serve ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/dragonwocky/documentative.git"
},
"author": "dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/dragonwocky/documentative/issues"
},
"homepage": "https://dragonwocky.me/documentative/#",
"dependencies": {
"highlight.js": "^10.1.2",
"klaw": "^3.0.0",
"less": "^3.11.1",
"marked": "^1.1.0",
"mime-types": "^2.1.26",
"minimist": "^1.2.5",
"pug": "^3.0.1"
},
"devDependencies": {
"prettier": "^2.0.2",
"@prettier/plugin-pug": "^1.2.0"
},
"bin": {
"documentative-build": "bin.js",
"documentative-serve": "bin.js"
},
"files": [
"bin.js",
"styling-guide.md",
"resources"
]
}