-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 882 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
{
"name": "markdown-to-dokuwiki",
"version": "0.0.1",
"description": "A command-line tool for churning out dokuwiki from markdown.",
"main": "index.js",
"bin": {
"md2doku": "./index.js"
},
"scripts": {
"test": "./node_modules/.bin/mocha --reporter spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mostekcm/markdown-to-dokuwiki.git"
},
"author": "mostekcm",
"license": "MIT",
"bugs": {
"url": "https://github.com/mostekcm/markdown-to-dokuwiki/issues"
},
"homepage": "https://github.com/mostekcm/markdown-to-dokuwiki#readme",
"dependencies": {
"bluebird": "^3.4.6",
"commander": "^2.9.0",
"fs": "0.0.1-security",
"path": "^0.12.7",
"readline": "^1.3.0",
"xregexp": "^3.1.1"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"mocha": "^3.0.2"
}
}