forked from topojson/topojson-simplify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.35 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
{
"name": "topojson-simplify",
"version": "3.0.2",
"description": "Topology-preserving simplification and filtering for TopoJSON.",
"keywords": [
"topojson",
"geojson",
"simplification"
],
"homepage": "https://github.com/topojson/topojson-simplify",
"license": "BSD-3-Clause",
"author": {
"name": "Mike Bostock",
"url": "https://bost.ocks.org/mike"
},
"main": "dist/topojson-simplify.js",
"module": "index",
"repository": {
"type": "git",
"url": "https://github.com/topojson/topojson-simplify.git"
},
"bin": {
"toposimplify": "bin/toposimplify"
},
"scripts": {
"pretest": "rm -rf dist && mkdir dist && rollup --banner \"$(preamble)\" -g topojson-client:topojson -f umd -n topojson -o dist/topojson-simplify.js -- index.js",
"test": "tape 'test/**/*-test.js' && eslint index.js src",
"prepublish": "npm run test && uglifyjs --preamble \"$(preamble)\" -cm -o dist/topojson-simplify.min.js -- dist/topojson-simplify.js",
"postpublish": "git push && git push --tags && zip -j dist/topojson-simplify.zip -- LICENSE.md README.md dist/topojson-simplify.js dist/topojson-simplify.min.js"
},
"dependencies": {
"commander": "2",
"topojson-client": "3"
},
"devDependencies": {
"eslint": "3",
"package-preamble": "0.0",
"rollup": "0.41",
"tape": "4",
"uglify-js": "2"
}
}