forked from StephanGeorg/staticmaps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.55 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": "@wes485/staticmaps",
"version": "1.1.0",
"description": "A node.js library for creating map images with polylines, markers and text.",
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/StephanGeorg/staticmaps.git"
},
"keywords": [
"openstreetmap",
"osm",
"staticmaps",
"staticmap",
"map",
"maps"
],
"author": "Stephan Georg <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/StephanGeorg/staticmaps/issues"
},
"homepage": "https://github.com/StephanGeorg/staticmaps#readme",
"dependencies": {
"@babel/runtime": "^7.4.4",
"lodash.find": "^4.6.0",
"lodash.first": "^3.0.0",
"lodash.isequal": "^4.5.0",
"lodash.last": "^3.0.0",
"lodash.uniqby": "^4.7.0",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"sharp": "^0.22.1"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"babel-eslint": "^9.0.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-stage-2": "^7.0.0",
"@babel/register": "^7.0.0",
"chai": "^4.1.2",
"eslint": "^5.14.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.13.0",
"mocha": "^4.0.1"
}
}