-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
55 lines (55 loc) · 1.4 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
{
"name": "electron-html-to",
"version": "2.6.1",
"description": "Convert html to html/image using electron",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib",
"build": "babel src --out-dir lib",
"lint": "eslint src test",
"test": "mocha test/test.js --timeout 8000",
"prepublish": "in-publish && npm-run-all lint clean build || not-in-publish"
},
"author": "BJR Matos <[email protected]> (https://github.com/bjrmatos)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bjrmatos/electron-html-to.git"
},
"bugs": {
"url": "https://github.com/bjrmatos/electron-html-to/issues"
},
"homepage": "https://github.com/bjrmatos/electron-html-to",
"keywords": [
"html",
"pdf",
"image",
"conversion",
"electron"
],
"dependencies": {
"body": "5.1.0",
"debug": "2.2.0",
"electron-workers": "1.10.3",
"lodash.pick": "4.2.1",
"minstache": "1.2.0",
"mkdirp": "0.5.1",
"object-assign": "4.1.1",
"pdfjs-dist": "1.5.285",
"sliced": "1.0.1",
"uuid": "2.0.2",
"which": "1.2.9"
},
"devDependencies": {
"babel": "5.8.29",
"electron": "1.6.6",
"eslint": "2.11.1",
"eslint-config-airbnb-base": "3.0.1",
"eslint-plugin-import": "1.8.1",
"in-publish": "2.0.0",
"mocha": "2.5.3",
"npm-run-all": "2.1.1",
"rimraf": "2.5.2",
"should": "9.0.0"
}
}