-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
34 lines (34 loc) · 962 Bytes
/
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
{
"name": "node-googlecharts",
"version": "0.0.1",
"description": "Node based Google Charts rendering",
"author": "Nicolas Fortin <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=4.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zallek/node-googlecharts.git"
},
"bugs": {
"url": "https://github.com/zallek/node-googlecharts/issues"
},
"homepage": "https://github.com/zallek/node-googlecharts#readme",
"main": "src/index.js",
"scripts": {
"bin": "NODE_ICU_DATA=node_modules/full-icu node bin/node-googlecharts",
"example": "NODE_ICU_DATA=node_modules/full-icu node examples/ColumnChart",
"test": "NODE_ICU_DATA=node_modules/full-icu mocha"
},
"dependencies": {
"jsdom": "^9.2.1",
"lodash.isplainobject": "^4.0.4"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"full-icu": "^1.0.3",
"mocha": "^2.5.3"
}
}