forked from Woracheth/heatmap.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 991 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
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "@trigolos/heatmap.js",
"version": "0.0.5",
"description": "Forked from [Woracheth/heatmap.js](https://github.com/Woracheth/heatmap.js)",
"author": "Patrick Wied",
"main": "build/heatmap.js",
"types": "index.d.ts",
"typings": "./index.d.ts",
"unpkg": "dist/index.js",
"scripts": {
"start": "grunt",
"build": "grunt build"
},
"devDependencies": {
"grunt": ">= 1.4.1",
"coffee-script": ">= 1.12.7",
"grunt-contrib-uglify": ">= 5.1.0",
"grunt-contrib-concat": ">= 2.0.0",
"grunt-contrib-watch": ">= 1.1.0",
"grunt-contrib-jshint": ">= 3.2.0"
},
"keywords": [
"heatmap",
"heatmaps",
"heat map",
"heat maps"
],
"files": [
"build",
"plugins",
"examples",
"docs",
"package.json",
"LICENSE",
"README.md",
"index.d.ts"
],
"buildFiles": [
"src/config.js",
"src/data.js",
"src/renderer/canvas2d.js",
"src/renderer.js",
"src/util.js",
"src/core.js"
]
}