-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
52 lines (52 loc) · 1.37 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
{
"name": "leaflet-webgl-heatmap",
"version": "0.2.7",
"description": "A Leaflet plugin for a popular WebGL Heatmap library.",
"main": "dist/leaflet-webgl-heatmap.min.js",
"files": [
"dist/*",
"src/*"
],
"dependencies": {},
"devDependencies": {
"browser-sync": "^2.18.5",
"casperjs": "^1.1.3",
"gulp": "^3.9.1",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^2.0.0",
"jshint": "^2.9.4",
"leaflet": "^1.1.0"
},
"preinstall": "npm i -g casperjs jshint gulp",
"start": "gulp",
"scripts": {
"test": "npm run test-src && npm run test-example && npm run test-casper",
"test-src": "jshint ./src/leaflet-webgl-heatmap.js",
"test-example": "jshint ./example/js/script.js",
"test-casper": "casperjs test ./tests/ --includes=casper-helpers.js --web-security=no",
"build": "gulp build",
"release": "./publish.sh || true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ursudio/webgl-heatmap-leaflet.git"
},
"keywords": [
"heatmap",
"webgl",
"leaflet",
"plugin"
],
"author": "Ursudio",
"contributors": [
{
"name": "Chris Willey",
"url": "https://github.com/chriswilley"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ursudio/webgl-heatmap-leaflet/issues"
},
"homepage": "https://github.com/ursudio/webgl-heatmap-leaflet#readme"
}