-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
51 lines (51 loc) · 1.53 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
{
"name": "osm-stats-workers",
"version": "0.2.0",
"description": "Summarize OSM data to metrics",
"scripts": {
"test": "npm run lint && NODE_ENV=test tap test/*.test.js test/*/*.test.js --cov",
"lint": "eslint index.js src/*",
"housekeeping": "node bin/housekeeping.js",
"osm-changes": "node bin/osm-changes.js",
"update-badges": "node bin/update-badges.js",
"start-local": "npm run osm-changes",
"start": "npm run osm-changes; if [ $? -eq 134 ]; then psql $DATABASE_URL -c 'UPDATE augmented_diff_status set id=id + 1'; fi"
},
"author": "",
"license": "BSD-3-Clause",
"engines": {
"node": ">=8.3.0"
},
"dependencies": {
"@turf/buffer": "^5.1.5",
"@turf/helpers": "^6.0.1",
"@turf/length": "^5.1.5",
"@turf/meta": "^6.0.1",
"async": "^2.6.0",
"babel-polyfill": "^6.26.0",
"core-js": "^3.0.0-beta.16",
"epipebomb": "^1.0.0",
"geojson-rbush": "^3.1.0",
"highland": "^2.11.1",
"html-entities": "^1.2.1",
"martinez-polygon-clipping": "^0.5.0",
"osm-replication-streams": "^0.6.3",
"osm2obj": "^3.0.0",
"pg": "^7.4.1",
"pg-query-stream": "^1.1.1",
"require-env": "^0.2.1"
},
"devDependencies": {
"eslint": "^4.17.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-promise": "^3.6.0",
"gh-pages": "^1.1.0",
"nodemon": "^1.14.12",
"pgexplode": "^1.0.1",
"prettier": "^1.10.2",
"tap": "^11.1.0"
}
}