-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
54 lines (54 loc) · 1.33 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
{
"name": "dirty-reprojectors",
"version": "0.0.1",
"description": "make different projections",
"bin": {
"dirty-reproject": "./bin/dirty-reproject"
},
"main": "reproject-geojson.js",
"scripts": {
"lint": "eslint .",
"test": "npm run lint && tap test",
"docs": "documentation readme -s API index.js"
},
"browserify": {
"transform": [
[
"bubleify",
{
"bubleError": true,
"transforms": {
"dangerousForOf": true
}
}
]
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/developmentseed/dirty-reprojectors.git"
},
"author": "DevelopmentSeed",
"license": "MIT",
"bugs": {
"url": "https://github.com/developmentseed/dirty-reprojectors/issues"
},
"homepage": "https://github.com/developmentseed/dirty-reprojectors#readme",
"dependencies": {
"@turf/bbox": "^6.0.1",
"bubleify": "^0.6.0",
"d3-geo": "^1.3.1",
"d3-geo-projection": "^1.2.1",
"geojson-stream": "0.0.1",
"minimist": "^1.2.0",
"through2": "^2.0.1"
},
"devDependencies": {
"documentation": "github:documentationjs/documentation#v4.0.0-beta14",
"eslint": "^3.10.2",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"tap": "^8.0.1"
}
}