-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
60 lines (60 loc) · 1.77 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
{
"name": "jsreport-electron-pdf",
"version": "3.2.0",
"description": "jsreport recipe which renders pdf from html using electron",
"main": "lib/index.js",
"scripts": {
"start": "jsreport-studio-start --httpPort 5488",
"run": "npm run build && npm run build-studio && jsreport-studio-start --httPort 5488 --run-only",
"clean": "rimraf lib",
"build": "babel src --out-dir lib",
"build-studio": "jsreport-studio-build",
"lint": "eslint src test",
"install-electron-prebuilt": "npm install electron-prebuilt@0.35.x",
"pretest": "npm-run-all build",
"test": "mocha test/test.js --timeout 7000 --compilers js:babel-register",
"prepublish": "in-publish && npm-run-all lint clean build build-studio || not-in-publish"
},
"author": {
"name": "BJR Matos",
"email": "bjrmatos@gmail.com"
},
"license": "MIT",
"keywords": [
"jsreport",
"electron",
"pdf"
],
"homepage": "https://github.com/bjrmatos/jsreport-electron-pdf",
"repository": {
"type": "git",
"url": "git@github.com:bjrmatos/jsreport-electron-pdf.git"
},
"engines": {
"node": ">=8.9"
},
"dependencies": {
"bluebird": "3.5.3",
"electron-html-to": "2.6.0",
"lodash.pickby": "4.6.0",
"stream-to-array": "2.3.0"
},
"devDependencies": {
"babel-cli": "6.10.1",
"babel-plugin-add-module-exports": "0.2.1",
"babel-preset-es2015": "6.9.0",
"babel-preset-stage-0": "6.5.0",
"babel-register": "6.9.0",
"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.1",
"jsreport-core": "2.10.0",
"jsreport-studio-dev": "1.6.0",
"mocha": "5.2.0",
"npm-run-all": "2.1.1",
"rimraf": "2.6.2",
"should": "13.2.1"
}
}