-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.76 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
57
58
59
60
61
62
63
64
65
66
67
{
"name": "leaflet.gridheat",
"version": "1.1.1",
"description": "A heatmap plugin with data stored in tiles.",
"main": "dist/leaflet.gridHeat.min.js",
"scripts": {
"test": "eslint .",
"lint": "eslint . --fix",
"demo": "webpack-dev-server --config demo/webpack.config.js --open --hot",
"build": "webpack --progress --hide-modules",
"preversion": "npm run test",
"postversion": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vickyliin/Leaflet.gridHeat.git"
},
"author": "Vicky <vickyliinn@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vickyliin/Leaflet.gridHeat/issues"
},
"files": [
"dist/"
],
"homepage": "https://github.com/vickyliin/Leaflet.gridHeat",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^5.0.5",
"eslint": "^4.7.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"leaflet": "^1.2.0",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.8.2"
},
"eslintConfig": {
"extends": [
"standard"
],
"globals": {
"L": false,
"API_ENTRY": false
},
"env": {
"browser": true
}
},
"eslintIgnore": [
"dist/"
],
"dependencies": {
"babel-runtime": "^6.26.0",
"leaflet.heat": "^0.2.0",
"lodash.debounce": "^4.0.8"
}
}