forked from mapbox/geojson-mapnikify
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.25 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
{
"name": "@kartotherian/geojson-mapnikify",
"version": "2.1.0",
"description": "transform geojson with simplestyle-spec into mapnik xml",
"main": "index.js",
"scripts": {
"test": "tape test/*.js",
"coverage": "istanbul cover tape test/*.js && coveralls < ./coverage/lcov.info"
},
"publishConfig": {
"access": "public"
},
"bin": {
"geojson-mapnikify": "./bin/geojson-mapnikify"
},
"repository": {
"type": "git",
"url": "git://github.com/mapbox/geojson-mapnikify.git"
},
"keywords": [
"geojson",
"mapnik",
"xml",
"simplestyle"
],
"author": "Tom MacWright",
"license": "ISC",
"bugs": {
"url": "https://github.com/mapbox/geojson-mapnikify/issues"
},
"homepage": "https://github.com/mapbox/geojson-mapnikify",
"dependencies": {
"@mapbox/geojson-normalize": "~0.0.1",
"queue-async": "~1.0.7",
"agentkeepalive": "~2.0.2",
"request": "~2.78.0",
"@kartotherian/makizushi": "^3.0.1",
"minimist": "~1.2.0",
"sigmund": "~1.0.0",
"xtend": "~4.0.0",
"@kartotherian/blend": "^2.0.1"
},
"devDependencies": {
"coveralls": "~2.11.1",
"glob": "~4.0.5",
"istanbul": "~0.3.0",
"@kartotherian/mapnik": "3.7.3",
"nock": "<=9.2.3",
"tape": "~2.14.0"
}
}