This repository was archived by the owner on May 3, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.3 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.3 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": "doxdox-plugin-handlebars",
"description": "Custom Handlebars template plugin for doxdox.",
"version": "2.0.0",
"main": "index.js",
"engines": {
"node": ">=8.0"
},
"license": "MIT",
"dependencies": {
"handlebars": "4.1.0",
"highlight.js": "9.15.6",
"markdown-it": "8.4.2"
},
"devDependencies": {
"@neogeek/eslint-config-standards": "4.1.0",
"babel-eslint": "10.0.1",
"eslint": "5.14.1"
},
"peerDependencies": {
"doxdox": "~2.0.3"
},
"scripts": {
"test": "npm run lint && doxdox index.js --layout test/fixtures/template.hbs | diff test/fixtures/generated.html -",
"test:docs": "doxdox index.js --layout markdown | diff DOCUMENTATION.md -",
"lint": "eslint .",
"fixtures": "doxdox index.js --layout test/fixtures/template.hbs --output test/fixtures/generated.html",
"docs": "doxdox index.js --layout markdown --output DOCUMENTATION.md"
},
"keywords": [
"doxdox",
"plugin",
"handlebars",
"markdown"
],
"authors": [
{
"name": "Scott Doxey",
"email": "hello@scottdoxey.com",
"homepage": "http://scottdoxey.com/"
}
],
"homepage": "https://github.com/neogeek/doxdox-plugin-handlebars",
"repository": {
"type": "git",
"url": "git://github.com/neogeek/doxdox-plugin-handlebars.git"
}
}