-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "jade-pdf2",
"version": "0.0.4",
"description": "Converts Jade files to PDF",
"main": "index.js",
"keywords": [
"jade",
"pdf",
"convert",
"template"
],
"author": "Eason Goodale",
"homepage": "https://github.com/carbureted/jade-pdf2",
"repository": {
"type": "git",
"url": "[email protected]:carbureted/jade-pdf2.git"
},
"bugs": {
"url": "https://github.com/carbureted/jade-pdf2/issues"
},
"licenses": {
"type": "MIT",
"url": "https://github.com/carbureted/jade-pdf2/blob/master/LICENSE"
},
"dependencies": {
"commander": "~2.1.0",
"duplexer": "~0.1.1",
"jade": "~1.1.5",
"phantomjs": "^2.1.3",
"through": "~2.3.4",
"tmp": "~0.0.23"
},
"devDependencies": {
"mocha": "latest",
"mocha-lcov-reporter": "latest",
"should": "latest",
"coveralls": "latest",
"jscoverage": "latest",
"jshint": "latest"
},
"engines": {
"node": "~0.10.0"
},
"scripts": {
"test": "make test",
"coveralls": "make test-coveralls"
},
"bin": {
"jade-pdf": "bin/jade-pdf"
}
}