-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
48 lines (48 loc) · 1.17 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
{
"name": "@mapbox/geojson-mapnikify",
"version": "3.0.1",
"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"
},
"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/blend": "^2.0.1",
"@mapbox/geojson-normalize": "~0.0.1",
"@mapbox/makizushi": "^3.0.1",
"agentkeepalive": "^4.0.2",
"minimist": "~1.2.0",
"needle": "^2.4.0",
"queue-async": "~1.0.7",
"sigmund": "~1.0.0",
"xtend": "~4.0.0"
},
"devDependencies": {
"coveralls": "~2.11.1",
"glob": "~4.0.5",
"istanbul": "~0.3.0",
"mapnik": "3.x || 4.x",
"nock": "<=9.2.3",
"tape": "~2.14.0"
}
}