-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
45 lines (45 loc) · 1.27 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
{
"name": "leaflet-solr-heatmap",
"version": "0.3.0",
"main": "leafletSolrHeatmap.js",
"files": [
"leafletSolrHeatmap.js"
],
"engines": {
"node": ">= 0.10.0"
},
"repository": {
"type": "git",
"url": "https://github.com/mejackreed/leaflet-solr-heatmap.git"
},
"author": "Jack Reed",
"license": "MIT",
"bugs": {
"url": "https://github.com/mejackreed/leaflet-solr-heatmap/issues"
},
"homepage": "https://github.com/mejackreed/leaflet-solr-heatmap",
"devDependencies": {
"grunt": "^0.4.5",
"grunt-bower-task": "^0.4.0",
"grunt-contrib-connect": "^0.10.1",
"grunt-contrib-watch": "~0.6.1",
"jasmine-core": "^2.6.4",
"karma": "^1.7.0",
"karma-es6-shim": "^1.0.0",
"karma-jasmine": "^1.1.0",
"karma-phantomjs-launcher": "^1.0.4"
},
"dependencies": {
"geostats": "^1.5.0",
"jquery": "^3.2.1",
"leaflet": "^1.0.3",
"leaflet.heat": "^0.2.0",
"leaflet.markercluster": "^1.0.6"
},
"scripts": {
"start": "./node_modules/.bin/grunt",
"index": "curl 'http://localhost:8983/solr/default-core/update?commit=true' --data-binary @fixtures/data.json -H 'Content-type:application/json'",
"test": "./node_modules/.bin/karma start --single-run",
"ci": "npm run index && npm run test"
}
}