-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 809 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 809 Bytes
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
{
"name": "geokit",
"version": "0.0.1",
"description": "",
"main": "index.js",
"bin": {
"geokit": "index.js"
},
"scripts": {
"format": "prettier --single-quote --write --print-width 120 *.js src/*.js test/*.test.js",
"test": "NODE_ENV=test tape test/*.test.js | tap-spec",
"fix": "eslint --fix test/*.test.js src",
"lint": "eslint src test/*.test.js lib"
},
"dependencies": {
"@mapbox/tile-cover": "^3.0.2",
"@turf/turf": "^5.1.6",
"JSONStream": "^1.3.5",
"event-stream": "^3.3.4",
"executive": "^1.6.3",
"json2csv": "^4.1.5",
"minimist": "^1.2.0",
"underscore": "^1.9.1"
},
"devDependencies": {
"eslint": "^4.12.0",
"log-interceptor": "^1.0.1",
"prettier": "^1.11.1",
"tap-spec": "^5.0.0",
"tape": "^4.9.1"
}
}