-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
56 lines (56 loc) · 1.22 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
{
"name": "highcharts-server",
"description": "Highcharts export server for node.js",
"version": "1.0.2",
"contributors": [
{
"name": "Gord Lea",
"email": "johlea@opendns.com"
},
{
"name": "Ashley Brener",
"url": "http://frisB.com"
}
],
"scripts": {
"build": "babel src --out-dir lib",
"prepublish": "npm run build",
"watch": "babel src --out-dir lib --watch",
"lint": "eslint src/**",
"fixlint": "eslint src/** --fix",
"test": "jasmine"
},
"main": "lib/",
"engines": {
"node": ">= 0.10.x"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.11.5",
"eslint": "^3.1.1",
"find-process": "^1.0.4",
"jasmine": "^2.4.1",
"node-resemble-js": "0.0.5"
},
"dependencies": {
"lodash": "^4.14.0",
"phantomjs-prebuilt": "^2.1.7",
"request": "^2.73.0"
},
"repository": {
"type": "git",
"url": "https://github.com/frisb/highcharts-server"
},
"bugs": {
"url": "https://github.com/frisb/highcharts-server/issues"
},
"license": "MIT",
"keywords": [
"highcharts-server",
"highcharts",
"charts",
"graphs"
]
}