-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.3 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
{
"name": "bit-docs-generate-html",
"version": "0.16.0",
"description": "Generates an HTML site with mustache templates",
"main": "index.js",
"scripts": {
"test": "mocha html_test.js --reporter spec",
"postversion": "git push --tags && git push",
"preversion": "npm test",
"release:pre": "npm version prerelease && npm publish",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bit-docs/bit-docs-generate-html.git"
},
"keywords": [
"donejs"
],
"author": "Bitovi",
"license": "MIT",
"bugs": {
"url": "https://github.com/bit-docs/bit-docs-generate-html/issues"
},
"homepage": "https://github.com/bit-docs/bit-docs-generate-html#readme",
"dependencies": {
"can-string": "0.0.5",
"enpeem": "^2.1.0",
"escape-html": "^1.0.3",
"fs-extra": "0.30.0",
"handlebars": "1.X",
"lodash": "~4.13.1",
"md5": "2.1.0",
"q": "^1.5.0",
"showdown": "^1.9.0",
"steal-tools": "^1.8.0",
"striptags": "^2.1.1",
"unescape-html": "^1.0.0"
},
"devDependencies": {
"mocha": ">= 1.18.0",
"rimraf": "2.1",
"bit-docs-process-tags": "0.0.5"
}
}