-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.22 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": "@whosonfirst/wof",
"version": "0.0.0-development",
"description": "WhosOnFirst tools",
"main": "index.js",
"bin": {
"wof": "./bin/wof.js"
},
"scripts": {
"units": "./bin/test unit",
"funcs": "./bin/test func",
"format_check": "./node_modules/standard/bin/cmd.js",
"format_fix": "./node_modules/standard/bin/cmd.js --fix",
"test": "./bin/test",
"ci": "./bin/test",
"validate": "npm ls",
"lint": "jshint ."
},
"author": "pelias",
"license": "MIT",
"dependencies": {
"@turf/bbox": "^6.0.1",
"axios": "^0.21.1",
"better-sqlite3": "^8.3.0",
"combine-streams": "^1.0.0",
"command-exists": "^1.2.8",
"csv-write-stream": "^2.0.0",
"jsonstream2": "^3.0.0",
"lodash": "^4.17.15",
"mississippi2": "^1.0.5",
"pretty-error": "^3.0.4",
"require-all": "^3.0.0",
"rfc5646": "^3.0.0",
"tar-stream": "^2.1.2",
"tmp": "^0.1.0",
"yargs": "^15.1.0"
},
"devDependencies": {
"glob": "^7.1.6",
"precommit-hook": "^3.0.0",
"standard": "^14.3.1",
"tap-spec": "^5.0.0",
"tape": "^4.13.0"
},
"pre-commit": [
"format_check",
"validate",
"test"
],
"release": {
"branch": "master",
"success": []
}
}