-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
32 lines (32 loc) · 1.07 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
{
"name": "pandox",
"description": "Rod's extensions for Pandoc, the universal document converter.",
"keywords": ["Pandoc","filter","pandocfilters","pandoc scripting","markdown","ast","json"],
"version": "0.0.2",
"license": "MIT",
"author": "Rod Waldhoff <[email protected]> http://heyrod.com/",
"contributors": [ ],
"repository": {"type":"git", "url":"https://github.com/rodw/pandox.git" },
"bugs": { "url": "http://github.com/rodw/pandox/issues" },
"main": "lib/index.js",
"bin": {
"pandox-up-caser": "./bin/pandox-up-caser",
"pandox-string-combiner": "./bin/pandox-string-combiner",
"pandox-code-block-processor": "./bin/pandox-code-block-processor"
},
"scripts": { "test": "make test" },
"dependencies": {
"optimist": "latest",
"argf": "latest",
"execSync": "latest",
"temp": "latest"
},
"devDependencies": {
"coffee-script": "latest",
"docco": "latest",
"jscoverage": "latest", "expresso": "latest",
"mocha": "latest",
"should": "latest"
},
"engines": { "node": ">= 0.10.3" }
}