-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
61 lines (61 loc) · 1.27 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
55
56
57
58
59
60
61
{
"name": "pbf2json",
"author": "mapzen",
"version": "0.0.0-development",
"description": "Golang osm pbf parser with npm wrapper",
"homepage": "https://github.com/pelias/pbf2json",
"license": "MIT",
"scripts": {
"units": "./bin/units",
"gotest": "go test ./...",
"test": "npm run units",
"pretest": "test/pretest.sh",
"end-to-end": "npm run pretest; node test/end-to-end.js;",
"lint": "jshint .",
"validate": "npm ls",
"compile": "./compile.sh",
"no-unstaged": "git diff --exit-code"
},
"repository": {
"type": "git",
"url": "https://github.com/pelias/pbf2json.git"
},
"keywords": [
"pelias",
"openstreetmap",
"pbf",
"parser"
],
"bugs": {
"url": "https://github.com/pelias/pbf2json/issues"
},
"engines": {
"node": ">=10.0.0",
"npm": ">=1.4.3"
},
"dependencies": {
"split": "^1.0.0",
"through2": "^3.0.0"
},
"devDependencies": {
"deep-diff": "^1.0.0",
"naivedb": "^1.0.7",
"pre-commit": "^1.2.2",
"precommit-hook": "3.0.0",
"tap-spec": "^5.0.0",
"tape": "^4.5.0",
"tmp": "0.1.0"
},
"pre-commit": [
"gotest",
"compile",
"no-unstaged",
"lint",
"validate",
"test",
"end-to-end"
],
"release": {
"success": []
}
}