-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
64 lines (64 loc) · 1.71 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
58
59
60
61
62
63
64
{
"name": "geojson-to-svg",
"version": "1.1.4",
"description": "primitive SVG renderer for geojson with feature styles",
"main": "index.js",
"bin": {
"geojson2svg": "bin/geojson2svg",
"measure-font": "bin/measure_font"
},
"directories": {
"test": "test",
"bin": "bin",
"src": "src",
"fonts": "fonts"
},
"scripts": {
"test": "tape test/*.test.js | tap-spec",
"test:watch": "nodemon --exec 'npm run lint && npm test && npm run demo'",
"demo": "node test/render.js",
"lint": "eslint ./src/",
"build-js": "browserify index.js -v -o dist/geojson-to-svg-src.js",
"compress-js": "uglifyjs dist/geojson-to-svg-src.js -o dist/geojson-to-svg.js -m --comments",
"build": "npm run lint && npm run test && npm run build-js && npm run compress-js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/w8r/geojson2svg.git"
},
"keywords": [
"geojson",
"renderer",
"svg",
"stylesheet",
"gis"
],
"author": "Alexander Milevski <info@w8r.name>",
"license": "MIT",
"bugs": {
"url": "https://github.com/w8r/geojson2svg/issues"
},
"homepage": "https://github.com/w8r/geojson2svg#readme",
"devDependencies": {
"browserify": "^17.0.0",
"deep-extend": "^0.6.0",
"eslint": "^6.8.0",
"lodash.flatten": "^4.4.0",
"nodemon": "^2.0.6",
"simplify-js": "^1.2.1",
"svg-polygon-decorator": "^1.0.7",
"tap-spec": "^5.0.0",
"tape": "^5.0.1",
"uglifyjs": "^2.4.10"
},
"dependencies": {
"geojson-project": "^1.0.1",
"json-extend": "^0.1.0",
"minimist": "^1.2.5",
"string-hash": "^1.1.0",
"transformation-matrix-js": "^2.6.5"
},
"optionalDependencies": {
"nightmare": "^3.0.2"
}
}