-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
52 lines (52 loc) · 1.5 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
{
"name": "sane-topojson",
"version": "4.0.0",
"description": "Ready-to-use multi-layer topojson files",
"main": "index.js",
"scripts": {
"clean": "cd build && ls | grep -v README.md | xargs rm || true",
"wget": "node ./bin/wget.js",
"shp2geo": "node ./bin/shp2geo.js",
"geo2topo": "node ./bin/geo2topo.js",
"stats": "node ./bin/stats.js",
"start": "npm run clean && npm run wget && npm run shp2geo && npm run geo2topo && npm run stats",
"test:lint": "standard | snazzy",
"test:jasmine": "karma start test/karma.conf.js",
"test": "npm run test:lint && npm run test:jasmine"
},
"repository": {
"type": "git",
"url": "git+https://github.com/etpinard/sane-topojson.git"
},
"keywords": [
"topojson",
"geojson",
"shapefiles",
"maps"
],
"author": "Étienne Tétreault-Pinard",
"license": "MIT",
"bugs": {
"url": "https://github.com/etpinard/sane-topojson/issues"
},
"homepage": "https://github.com/etpinard/sane-topojson#readme",
"devDependencies": {
"fast-array-diff": "^0.2.0",
"geojson-utils": "^1.1.0",
"gzip-size": "^5.1.1",
"jasmine-core": "^3.4.0",
"karma": "^4.2.0",
"karma-browserify": "^6.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-jasmine": "^2.0.1",
"mapshaper": "^0.4.122",
"node-wget": "^0.4.3",
"prettysize": "^2.0.0",
"progress": "^2.0.3",
"snazzy": "^8.0.0",
"standard": "^13.0.2",
"topojson": "^1.6.27",
"watchify": "^3.11.1"
},
"dependencies": {}
}