forked from pborenstein/confluence2markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 800 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
{
"name": "confluence2markdown",
"version": "0.0.5",
"description": "Convert Confluence markup to Markdown",
"main": "./lib/Confluence2Markdown.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin" : { "c2m": "./bin/c2m.js" },
"keywords": [
"confluence",
"markdown"
],
"author": "Philip Borenstein",
"license": "MIT",
"dependencies": {
"tokenizer": "git://github.com/pborenstein/node-tokenizer"
},
"directories": {
"test": "test"
},
"devDependencies": {},
"repository": {
"type": "git",
"url": "git://github.com/pborenstein/confluence2markdown.git"
},
"bugs": {
"url": "https://github.com/pborenstein/confluence2markdown/issues"
},
"homepage": "https://github.com/pborenstein/confluence2markdown"
}