-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
57 lines (57 loc) · 1.58 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.13.1",
"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.23.5",
"@turf/bbox": "^6.5.0",
"@turf/circle": "^6.5.0",
"got": "^11.8.6",
"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",
"modern-async": "^1.1.4",
"sharp": "0.33.2"
},
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.5",
"@babel/eslint-parser": "^7.23.3",
"@babel/plugin-transform-runtime": "^7.23.4",
"@babel/preset-env": "^7.23.5",
"@babel/register": "^7.22.15",
"chai": "^4.3.10",
"eslint": "^8.55.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.0",
"mocha": "^10.2.0"
}
}