forked from StephanGeorg/staticmaps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.59 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
{
"name": "staticmaps",
"version": "1.8.0",
"description": "A Node.js library for creating map images with markers, polylines, polygons and text.",
"author": "Stephan Georg <[email protected]>",
"license": "MIT",
"repository": "github:StephanGeorg/staticmaps",
"main": "./dist/staticmaps.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha --require @babel/register",
"build": "babel src --presets @babel/preset-env --plugins @babel/plugin-transform-runtime --out-dir dist",
"prepublish": "npm run build"
},
"keywords": [
"openstreetmap",
"osm",
"staticmaps",
"staticmap",
"map",
"maps"
],
"bugs": {
"url": "https://github.com/StephanGeorg/staticmaps/issues"
},
"homepage": "https://github.com/StephanGeorg/staticmaps#readme",
"dependencies": {
"@babel/runtime": "^7.14.0",
"@turf/bbox": "^6.3.0",
"@turf/circle": "^6.3.0",
"got": "^11.8.2",
"lodash.chunk": "^4.2.0",
"lodash.find": "^4.6.0",
"lodash.first": "^3.0.0",
"lodash.flatten": "^4.4.0",
"lodash.isequal": "^4.5.0",
"lodash.last": "^3.0.0",
"lodash.uniqby": "^4.7.0",
"sharp": "0.30.0"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.3",
"@babel/eslint-parser": "^7.14.3",
"@babel/plugin-transform-runtime": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@babel/preset-stage-2": "^7.8.3",
"@babel/register": "^7.13.16",
"chai": "^4.3.4",
"eslint": "^7.27.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.3",
"mocha": "^9.2.0"
}
}