forked from gagan-bansal/geojson2svg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.12 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
{
"name": "@mapcreator/geojson2svg",
"version": "1.2.4",
"description": "Converts geojson to svg/path string given svg viewport size and maps extent.",
"main": "src/main.js",
"scripts": {
"test": "mocha",
"build-debug": "browserify src/main.js --debug --standalone geojson2svg | exorcist dist/geojson2svg.js.map > dist/geojson2svg.js",
"build-min": "browserify src/main.js --standalone geojson2svg | uglifyjs -c > dist/geojson2svg.min.js",
"build": "npm run build-debug && npm run build-min",
"watch": "watchify src/main.js --debug --standalone geojson2svg -o dist/geojson2svg.js -v"
},
"keywords": [
"maps",
"geojson",
"svg"
],
"repository": {
"type": "git",
"url": "https://github.com/MapcreatorEU/geojson2svg"
},
"author": "Gagan Bansal",
"license": "MIT",
"dependencies": {
"multigeojson": "~0.0.1"
},
"devDependencies": {
"browserify": "~5.10.1",
"chai": "~1.9.1",
"deepmerge": "^1.3.2",
"exorcist": "^0.1.6",
"jsdom": "^9.8.3",
"mocha": "~1.21.4",
"parse-svg-path": "~0.1.1",
"uglify-js": "^2.6.0",
"watchify": "~1.0.2"
}
}