-
Notifications
You must be signed in to change notification settings - Fork 137
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.52 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.52 KB
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
{
"name": "electron-pdf",
"version": "1.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 lint && ava | tap-diff",
"\\": "This effectively runs jasmine tests as an electron application (but it doesn't work for Ava)",
"integration-test": "electron node_modules/.bin/jasmine"
},
"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.16.0",
"jasmine": "^2.5.2",
"standard": "^8.4.0",
"tap-diff": "^0.1.1",
"tap-spec": "^4.1.1"
},
"dependencies": {
"async": "^2.0.1",
"bluebird": "^3.4.6",
"debug": "^2.3.2",
"electron": "^1.4.6",
"eventemitter2": "^2.1.3",
"github-markdown-css": "^2.0.9",
"highlight.js": "^9.0.0",
"lodash": "^4.16.2",
"marked": "^0.3.5",
"minimist": "^1.2.0",
"object-assign": "^4.0.1",
"uuid": "^2.0.1"
},
"ava": {
"concurrency": 5,
"failFast": true,
"tap": true,
"powerAssert": false
}
}