-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
95 lines (95 loc) · 2.24 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "osm-p2p-server",
"version": "7.0.0",
"description": "Peer-to-peer OpenStreetMap API v0.6 Server",
"main": "index.js",
"bin": {
"osm-p2p-server": "bin/cmd.js"
},
"keywords": [
"open street map",
"OpenStreetMap",
"OSM",
"peer-to-peer",
"osm-p2p",
"server",
"p2p",
"maps",
"geo"
],
"authors": [
"substack",
"gmaclennan",
"noffle"
],
"contributors": [
{
"name": "Gregor MacLennan",
"email": "gmaclennan@digital-democracy.org"
}
],
"license": "BSD-2-Clause",
"dependencies": {
"JSONStream": "^1.1.4",
"accepts": "^1.3.3",
"collect-stream": "^1.1.1",
"collect-transform-stream": "0.0.2",
"content-type": "^1.0.2",
"debug": "^2.2.0",
"from2-array": "0.0.4",
"inherits": "^2.0.1",
"level": "^5.0.1",
"minimist": "^1.2.0",
"mkdirp": "~0.5.1",
"obj2osm": "^2.0.1",
"once": "^1.3.3",
"osm-p2p-defork": "^1.0.0",
"osm2obj": "^3.0.0",
"pumpify": "^1.3.5",
"query-string": "^4.2.2",
"randombytes": "^2.0.2",
"read-only-stream": "^2.0.0",
"readable-stream": "^2.1.4",
"routes": "^2.1.0",
"statuses": "^1.3.0",
"through2": "^2.0.1",
"through2-map": "^3.0.0",
"xtend": "^4.0.1"
},
"devDependencies": {
"codecov": "^1.0.1",
"concat-stream": "^1.6.0",
"end-of-stream": "^1.4.1",
"express": "^4.14.0",
"mapeo-schema": "^1.8.0",
"hyperquest": "^2.0.0",
"isostring": "0.0.1",
"kappa-core": "^4.0.0",
"kappa-osm": "^3.0.0",
"memdb": "^1.3.1",
"nyc": "^10.1.2",
"random-access-file": "^2.0.1",
"random-access-memory": "^3.1.1",
"run-waterfall": "^1.1.3",
"standard": "^8.0.0",
"tape": "^4.4.0",
"tmp": "^0.1.0",
"xml-parser": "^1.2.1"
},
"directories": {
"example": "example"
},
"scripts": {
"test": "tape 'test/*.js' 'test/lib/*.test.js' 'test/api/*.test.js'",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"lint": "standard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/digidem/osm-p2p-server.git"
},
"bugs": {
"url": "https://github.com/digidem/osm-p2p-server/issues"
},
"homepage": "https://github.com/digidem/osm-p2p-server#readme"
}