-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
48 lines (48 loc) · 1.35 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
48
{
"name": "koa-markdown",
"version": "2.0.2",
"description": "Auto convert markdown to html for koa. Inspired by connect-render",
"main": "index.js",
"scripts": {
"test": "mocha --harmony --check-leaks -R spec -t 5000 -r should test/*.test.js",
"test-cov": "node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- --check-leaks -t 5000 -r should test/*.test.js",
"test-travis": "node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha --report lcovonly -- --check-leaks -t 5000 -r should test/*.test.js",
"jshint": "jshint .",
"autod": "autod -w --prefix '^'"
},
"repository": {
"type": "git",
"url": "git://github.com/koajs/koa-markdown.git"
},
"keywords": [
"koa",
"markdown",
"render"
],
"author": "dead_horse <[email protected]> (http://deadhorse.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/koajs/koa-markdown/issues"
},
"homepage": "https://github.com/koajs/koa-markdown",
"devDependencies": {
"autod": "^2.4.2",
"istanbul-harmony": "~0.3.1",
"koa": "1",
"mocha": "~2.0.1",
"should": "~4.4.2",
"supertest": "~0.15.0"
},
"dependencies": {
"co-fs": "^1.2.0",
"copy-to": "^2.0.1",
"markdown-it": "^3.0.1",
"utility": "^1.12.0"
},
"engine": {
"node": ">= 0.12.9"
},
"files": [
"index.js"
]
}