-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
55 lines (55 loc) · 1.65 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
{
"name": "geojson2svg",
"version": "2.0.1",
"description": "Converts geojson to svg/path string given svg viewport size and maps extent.",
"main": "src/index.js",
"types": "src/index.d.ts",
"scripts": {
"test": "mocha",
"build-debug": "browserify ./for-browserify.js --debug --standalone GeoJSON2SVG | exorcist dist/geojson2svg.js.map > dist/geojson2svg.js",
"build-min": "browserify ./for-browserify.js --standalone GeoJSON2SVG | uglifyjs -c > dist/geojson2svg.min.js",
"build": "npm run build-debug && npm run build-min",
"changelog": "auto-changelog --commit-limit=false && git add ./CHANGELOG.md && git commit --amend",
"watch:readme": "markserv README.md",
"release:patch": "npm version patch && npm run changelog",
"release:minor": "npm version minor && npm run changelog",
"release:major": "npm version major && npm run changelog",
"watch": "mocha -w"
},
"keywords": [
"maps",
"geojson",
"svg"
],
"repository": {
"type": "git",
"url": "https://github.com/gagan-bansal/geojson2svg"
},
"auther": "Gagan Bansal",
"license": "MIT",
"dependencies": {
"extend": "^3.0.2",
"geojson-bbox": "^0.0.1",
"multigeojson": "~0.0.1"
},
"devDependencies": {
"auto-changelog": "^2.3.0",
"browserify": "~17.0.0",
"chai": "~4.3.4",
"deepmerge": "^4.2.2",
"exorcist": "^2.0.0",
"jsdom": "^18.1.1",
"mocha": "^10.1.0",
"parse-svg-path": "~0.1.2",
"pre-commit": "^1.2.2",
"proj4": "^2.9.0",
"standard-version": "^9.3.2",
"uglify-js": "^3.13.3",
"watchify": "^4.0.0"
},
"overrides": {
"markserv": {
"livereload": "0.9.3"
}
}
}