-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
68 lines (68 loc) · 1.74 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
68
{
"name": "leaflet-overpass-layer",
"description": "This is an simple way to bring OSM data as POI overlay on your leaflet Map",
"version": "2.9.0",
"homepage": "https://github.com/GuillaumeAmat/leaflet-overpass-layer/",
"repository": "https://github.com/GuillaumeAmat/leaflet-overpass-layer/",
"bugs": "https://github.com/GuillaumeAmat/leaflet-overpass-layer/issues",
"author": [
"Karsten Hinz",
"Guillaume Amat"
],
"license": "MIT",
"keywords": [
"leaflet",
"overpass",
"layer",
"marker",
"osm",
"openstreetmap"
],
"main": "src/OverPassLayer.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --progress",
"watch": "webpack -w --progress",
"precommit": "lint-staged"
},
"prettier": {
"semi": true,
"singleQuote": true
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --single-quote --write",
"git add"
],
"src/**/*.{js,jsx,json}": [
"eslint",
"git add"
]
},
"dependencies": {
"idb": "^4.0.5",
"js-clipper": "^1.0.1",
"leaflet": "^1.2.0"
},
"devDependencies": {
"autoprefixer": "^7.1.5",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^0.28.7",
"eslint": "^4.8.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-json": "^1.2.0",
"extract-text-webpack-plugin": "^3.0.1",
"husky": "^0.14.3",
"lint-staged": "^4.2.3",
"postcss-loader": "^2.0.7",
"prettier": "^1.7.4",
"uglifyjs-webpack-plugin": "1.3.0",
"webpack": "^3.6.0"
}
}