-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 918 Bytes
/
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
{
"name": "markdown-to-docbook",
"description": "Node.js library for converting Markdown to docbook.",
"version": "0.1.1",
"author": "Tomaz Muraus <tomaz+npm@tomaz.me> http://www.tomaz.me",
"keywords": [ "markdown", "docbook"],
"homepage": "https://github.com/Kami/node-markdown-to-docbook",
"directories": {
"lib": "./lib",
"example": "./example",
"bin": "./bin"
},
"dependencies": {
"marked": "https://github.com/Kami/marked/tarball/dev",
"elementtree": ">= 0.1.3",
"optimist": "= 0.3.1",
"sprintf": "= 0.1.1",
"async": "= 0.1.22"
},
"devDependencies": {
"graceful-fs": "2.0.0",
"jshint": "2.1.4"
},
"engines": {
"node": ">= 0.6.0 && < 0.11.0"
},
"main": "./index",
"licenses" : [
{
"type" : "Apache",
"url" : "http://www.apache.org/licenses/LICENSE-2.0.html"
}
],
"scripts": {
"lint": "./scripts/lint.sh"
}
}