-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 989 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
{
"name": "geojson2dsv",
"version": "0.1.0",
"description": "shuttle geojson points into csv encoding",
"main": "index.js",
"scripts": {
"release": "standard-version",
"test": "tap test",
"docs": "documentation readme index.js -s API"
},
"repository": {
"type": "git",
"url": "git://github.com/mapbox/geojson2dsv.git"
},
"keywords": [
"geojson",
"csv",
"encoding"
],
"author": "Tom MacWright",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/mapbox/geojson2dsv/issues"
},
"homepage": "https://github.com/mapbox/geojson2dsv",
"dependencies": {
"@mapbox/geojson-normalize": "^0.0.1",
"d3-dsv": "^1.0.5"
},
"devDependencies": {
"cz-conventional-changelog": "^2.0.0",
"documentation": "^4.0.0-rc.0",
"prettier": "^1.2.2",
"standard-version": "^4.0.0",
"tap": "^10.3.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}