-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
44 lines (44 loc) · 1020 Bytes
/
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
{
"name": "geojson-flatten",
"version": "1.1.1",
"description": "transform geojson into single-parts",
"source": "index.js",
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"unpkg": "dist/index.umd.js",
"module": "dist/index.es.js",
"files": [
"index.js",
"dist",
"geojson-flatten"
],
"directories": {
"test": "test"
},
"scripts": {
"test": "eslint index.js && tap test/flatten.js",
"prepare": "microbundle --name geojsonFlatten",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git://github.com/tmcw/geojson-flatten.git"
},
"keywords": [
"geojson",
"maps",
"flatten"
],
"author": "Tom MacWright",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/tmcw/geojson-flatten/issues"
},
"homepage": "https://github.com/tmcw/geojson-flatten",
"devDependencies": {
"eslint": "^7.0.0",
"microbundle": "^0.13.0",
"standard-version": "^9.0.0",
"tap": "^14.10.6"
}
}