forked from cabbiepete/html-boilerplate-pdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.33 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
{
"name": "html-boilerplate-pdf",
"version": "5.0.2",
"description": "HTML to PDF converter",
"main": "index.js",
"scripts": {
"test": "mocha",
"test-travis": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -R spec ./test/*",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:cabbiepete/html-boilerplate-pdf.git"
},
"keywords": [
"html",
"pdf",
"convert",
"template"
],
"author": "Peter simmons",
"homepage": "https://github.com/cabbiepete/html-boilerplate-pdf",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/cabbiepete/html-boilerplate-pdf/blob/master/LICENSE"
}
],
"dependencies": {
"commander": "^2.2.0",
"duplexer": "~0.1.1",
"extend": "^3.0.0",
"phantomjs-prebuilt": "~2.1.14",
"pygmentize-bundled": "~2.3.0",
"stream-from-to": "~1.4.0",
"through": "~2.3.4",
"tmp": "0.0.31",
"snyk": "^1.40.2"
},
"devDependencies": {
"coveralls": "^2.11.15",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"mocha-lcov-reporter": "^1.2.0",
"pdf-text": "^0.4.0"
},
"engines": {
"node": ">= 4"
},
"bin": {
"html-boilerplate-pdf": "bin/html-boilerplate-pdf"
},
"snyk": true
}