forked from tyrasd/overpass-turbo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.57 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "overpass-turbo",
"description": "A web based data mining tool for OpenStreetMap using Overpass API",
"homepage": "http://overpass-turbo.eu/",
"repository": "git+https://github.com/tyrasd/overpass-turbo.git",
"license": "MIT",
"scripts": {
"test": "npm run test:style && npm run test:karma",
"test:style": "prettier --check .",
"test:karma": "karma start --single-run",
"test:start": "karma start",
"fix:style": "prettier --write .",
"start": "webpack-dev-server",
"build": "webpack -p"
},
"devDependencies": {
"chai": "^3.5.0",
"clean-webpack-plugin": "^0.1.15",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.26.1",
"csso": "^1.3.11",
"exports-loader": "^0.6.3",
"extract-text-webpack-plugin": "2.0.0-rc.3",
"favicons-webpack-plugin": "^0.0.7",
"file-loader": "^0.10.0",
"html-loader": "^0.4.4",
"html-webpack-plugin": "^2.28.0",
"husky": "^4.3.0",
"karma": "^1.5.0",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-webpack": "^2.0.2",
"lint-staged": "^10.5.1",
"mocha": "^3.2.0",
"mocha-phantomjs": "^4.0.2",
"pegjs": "^0.10.0",
"pegjs-loader": "^0.5.1",
"phantomjs-prebuilt": "^2.1.14",
"prettier": "^2.1.2",
"request": "^2.67.0",
"sinon": "^2.0.0-pre.5",
"sinon-chai": "^2.8.0",
"style-loader": "^0.13.1",
"uglify-js": "^2.4.24",
"url-loader": "^0.5.7",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.3.0"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.13.0",
"bulma": "^0.8.1",
"canvas-toBlob": "^1.0.0",
"canvg": "tyrasd/canvg#755b433a800a9c79fe15bd8c202b5d988cd6b81a",
"codemirror": "https://github.com/codemirror/CodeMirror/archive/v2.38.tar.gz",
"file-saver": "^1.3.3",
"html2canvas": "^0.5.0-beta4",
"jquery": "3.5.0",
"jquery-ui": "1.12.0",
"leaflet": "0.7.7",
"leaflet-polylineoffset": "^1.0.0",
"leaflet.locationfilter": "tyrasd/leaflet-locationfilter#1eed148a41f8e4487e2b4b202a32f28839cbff1a",
"lodash": ">=4.17.5",
"mapbbcode": "https://github.com/MapBBCode/mapbbcode/archive/v1.2.0.tar.gz",
"osm-auth": "^1.0.1",
"osmtogeojson": "^3.0.0-beta.3",
"polylabel": "^1.0.2",
"promise-polyfill": "^6.0.2",
"rgbcolor": "^1.0.1",
"stackblur": "^1.0.0",
"togpx": "^0.5.3",
"tokml": "^0.4.0"
},
"prettier": {
"bracketSpacing": false,
"trailingComma": "none"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}