-
Notifications
You must be signed in to change notification settings - Fork 136
/
package.json
65 lines (65 loc) · 1.51 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
58
59
60
61
62
63
64
65
{
"name": "electron-pdf",
"version": "25.0.0",
"description": "A command line tool to generate PDF from URL, HTML or Markdown files",
"main": "lib/index.js",
"scripts": {
"fix": "standard --fix",
"lint": "standard",
"unit-test": "ava | tap-diff",
"test": "npm run fix && ava **/*-test.js | tap-diff && electron-ava --tap **/*-test-it.js | tap-diff"
},
"bin": {
"electron-pdf": "cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/fraserxu/electron-pdf.git"
},
"keywords": [
"electron",
"electron-tool",
"pdf",
"png",
"export",
"render",
"html",
"markdown"
],
"author": "Fraser Xu, Nate Good",
"license": "MIT",
"bugs": {
"url": "https://github.com/fraserxu/electron-pdf/issues"
},
"homepage": "https://github.com/fraserxu/electron-pdf",
"devDependencies": {
"ava": "^0.18.0",
"electron-ava": "^0.3.0",
"standard": "^12.0.1",
"tap-diff": "^0.1.1",
"tap-spec": "^5.0.0",
"then-fs": "^2.0.0",
"validator": "^10.11.0"
},
"dependencies": {
"@sentry/electron": "^1.5.2",
"async": "^2.0.1",
"debug": "^2.3.2",
"electron": "^25.4.0",
"eventemitter2": "^2.1.3",
"github-markdown-css": "^2.0.9",
"highlight.js": "^9.0.0",
"lodash": "^4.17.11",
"marked": "^0.3.5",
"minimist": "^1.2.0",
"object-assign": "^4.1.1",
"uuid": "^2.0.1"
},
"ava": {
"concurrency": 5,
"timeout": "5s",
"failFast": true,
"tap": true,
"powerAssert": false
}
}