-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1 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
{
"name": "node-highcharts-exporter",
"version": "0.0.6",
"description": "A basic Node.js package to export SVG sent by Highcharts into SVG, PNG, PDF, or JPG",
"main": "lib/node-highcharts-exporter/main.js",
"directories": {
"example": "example",
"test": "tests"
},
"scripts": {
"test": "grunt test"
},
"repository": {
"type": "git",
"url": "https://github.com/coderigo/node-highcharts-exporter.git"
},
"keywords": [
"highcharts",
"export",
"node"
],
"author": "Rodrigo Martell <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/coderigo/node-highcharts-exporter/issues"
},
"devDependencies": {
"jasmine-node" : "1.12.0",
"rimraf": "~2.2.5",
"grunt": "0.4.2",
"grunt-cli": "0.1.11",
"grunt-contrib-jshint": "0.6.4",
"grunt-jasmine-node": "~0.1.0"
},
"dependencies": {
"svg2png": "~1.0.0",
"pdfkit": "~0.2.6",
"netpbm": "~1.0.0",
"crypto": "0.0.3",
"async": "~0.2.9"
}
}