-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
68 lines (68 loc) · 1.58 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
66
67
68
{
"name": "jsreport-wkhtmltopdf",
"version": "2.3.0",
"keywords": [
"jsreport",
"wkhtmltopdf",
"extension"
],
"description": "jsreport recipe rendering pdf using wkhtmltopdf",
"homepage": "https://github.com/jsreport/jsreport-wkhtmltopdf",
"repository": {
"type": "git",
"url": "git://github.com/jsreport/jsreport-wkhtmltopdf.git"
},
"license": "MIT",
"author": {
"name": "Jan Blaha",
"email": "[email protected]",
"url": "http://janblaha.net"
},
"main": "lib/index.js",
"scripts": {
"start": "jsreport-studio-start --httpPort 5488",
"test": "mocha --timeout=10000 --reporter spec test && standard",
"lint": "standard",
"build": "jsreport-studio-build",
"prepublish": "in-publish && jsreport-studio-build || not-in-publish"
},
"standard": {
"ignore": [
"main.js"
],
"parser": "babel-eslint",
"env": {
"node": true,
"mocha": true,
"browser": true
}
},
"engines": {
"node": ">=8.9"
},
"dependencies": {
"bluebird": "3.5.3",
"mkdirp": "0.5.1",
"node.extend.without.arrays": "1.1.6",
"wkhtmltopdf-installer": "0.3.2"
},
"devDependencies": {
"babel-eslint": "8.2.2",
"eslint": "4.19.1",
"eslint-config-standard-jsx": "5.0.0",
"eslint-plugin-babel": "4.1.2",
"in-publish": "2.0.1",
"jsreport-core": "2.10.0",
"jsreport-debug": "2.1.3",
"jsreport-studio-dev": "1.6.0",
"mocha": "5.0.5",
"should": "13.2.3",
"standard": "11.0.1"
},
"files": [
"lib",
"index.js",
"jsreport.config.js",
"studio"
]
}