forked from adamburmister/gitprint.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.5 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
49
50
51
52
53
54
55
56
57
{
"name": "gitprint.com",
"version": "0.0.6",
"description": "Render GitHub markdown files for easy printing",
"main": "index.js",
"scripts": {
"start": "grunt && node ./bin/www",
"test": "mocha test",
"coverage": "istanbul cover _mocha test --recursive -- -u exports -R spec && open coverage/lcov-report/index.html"
},
"repository": {
"type": "git",
"url": "git://github.com/adamburmister/gitprint.com.git"
},
"keywords": [
"github",
"print",
"markdown",
"pdf"
],
"author": "Adam Burmister <[email protected]>",
"license": "All rights reserved",
"bugs": {
"url": "https://github.com/adamburmister/gitprint.com/issues"
},
"homepage": "https://github.com/adamburmister/gitprint.com",
"devDependencies": {
"forever": "^0.10.11",
"grunt": "~0.4.4",
"grunt-contrib-sass": "~0.7.3",
"mocha": "~1.18.0",
"chai": "~1.9.0",
"chai-as-promised": "~4.1.1",
"grunt-contrib-clean": "^0.5.0",
"markdown-pdf": "https://github.com/adamburmister/markdown-pdf/archive/master.tar.gz",
"istanbul": "^0.2.7"
},
"dependencies": {
"q": "~1.0.1",
"express": "~3.5.0",
"static-favicon": "~1.0.0",
"morgan": "~1.0.0",
"cookie-parser": "~1.0.1",
"body-parser": "~1.0.0",
"debug": "~0.7.4",
"jade": "~1.3.0",
"request": "^2.34.0",
"octonode": "~0.5.0",
"split": "^0.3.0",
"through": "^2.3.4",
"duplexer": "^0.1.1",
"underscore": "^1.6.0"
},
"directories": {
"test": "test"
}
}