-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.35 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
{
"name": "osm-adiff-service",
"version": "1.0.0",
"description": "Process OSM minute replication files and build complete changeset representations",
"main": "index.js",
"engines": {
"npm": ">=6.14.15",
"node": ">=14.18.1"
},
"scripts": {
"test": "tape test/*.js",
"backfill": "node ./backfill",
"process": "node ./process.js",
"update-queue": "node ./update.js"
},
"repository": {
"type": "git",
"url": "https://github.com/OSMCha/osm-adiff-service"
},
"author": "Mapbox / Development Seed",
"license": "ISC",
"bugs": {
"url": "https://github.com/OSMCha/osm-adiff-service/issues"
},
"homepage": "https://github.com/OSMCha/osm-adiff-service",
"dependencies": {
"@osmcha/osm-adiff-parser": "^2.0.0",
"@osmcha/osm-changeset-xml-parser": "^1.0.0",
"@osmcha/osmchange-parser": "^1.0.0",
"aws-sdk": "^2.625.0",
"changetags": "^0.1.2",
"lodash": "^4.17.15",
"minimist": "^1.2.0",
"moment": "^2.25.3",
"node-fetch": "^1.7.3",
"redis": "^4.6.13"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-google": "^0.7.1",
"eslint-config-standard": "^10.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.0",
"pako": "^1.0.5",
"tape": "^5.0.0"
}
}