forked from highcharts/highcharts-export-server
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.45 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": "highcharts-phantomjs",
"version": "2.2.1",
"description": "PhantomJS script to convert SVG or Highcharts JSON options objects to chart images",
"main": "server.js",
"bin": {
"highcharts-phantomjs": "server.js"
},
"scripts": {
"start": "node ./server.js start",
"lint": "eslint **/*.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nfantone/highcharts-export-server.git"
},
"keywords": [
"highcharts",
"charts",
"graphs",
"images",
"convert",
"export",
"png",
"svg",
"phantomjs"
],
"author": "Gert Vaartjes <@GertVaartjes> (https://github.com/gvaartjes)",
"contributors": [
"Nicolás Fantone <[email protected]> (https://github.com/nfantone)"
],
"files": [
"server.js",
"lib/"
],
"engines": {
"node": ">=4.0.0"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/nfantone/highcharts-export-server/issues"
},
"homepage": "https://github.com/nfantone/highcharts-export-server#readme",
"dependencies": {
"highcharts": "^5.0.6"
},
"optionalDependencies": {
"phantomjs-prebuilt": "^2.1.14",
"winston": "^2.3.0",
"yargs": "^7.0.1"
},
"devDependencies": {
"eslint": "^3.12.2",
"eslint-config-semistandard": "^7.0.0",
"eslint-config-standard": "^7.0.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1"
}
}