This repository has been archived by the owner on Mar 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
73 lines (73 loc) · 1.99 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
{
"name": "@mapbox/osm-compare",
"version": "9.4.1",
"description": "Compare a features new and old versions in GeoJSON",
"main": "index.js",
"scripts": {
"test": "TAP_TIMEOUT=600 tap --coverage --no-check-coverage tests/*.js --test-ignore=tests/test_compare_function.js",
"lint": "eslint ./*/*.js",
"pretest": "npm run lint",
"postinstall": "./scripts/download_common_tag_values.sh",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier-eslint --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/mapbox/osm-compare.git"
},
"author": "Mapbox",
"license": "ISC",
"dependencies": {
"@mapbox/vt2geojson": "^1.1.5",
"@turf/area": "^5.1.5",
"@turf/buffer": "^4.2.0",
"@turf/difference": "^4.1.0",
"@turf/line-intersect": "4.4.0",
"attempt": "^1.0.1",
"cheap-ruler": "^2.5.1",
"csv": "^1.1.1",
"d3-queue": "^3.0.7",
"deep-equals": "0.0.2",
"diff": "^3.5.0",
"feature-filter": "^2.2.0",
"geojson-polygon-self-intersections": "^1.1.1",
"geopoint": "^1.0.1",
"levenshtein": "^1.0.5",
"lodash": "^4.17.3",
"lodash.intersection": "^4.4.0",
"lodash.isempty": "^4.4.0",
"moment": "^2.17.1",
"naughty-words": "^1.0.1",
"nock": "^9.0.11",
"osm-landmarks": "^0.3.1",
"request": "^2.72.0",
"sax": "^1.2.1",
"sqlite3": "^4.1.1",
"tile-cover": "^3.0.1",
"turf-area": "^1.1.1",
"turf-bbox-polygon": "^3.0.12",
"turf-centroid": "^1.1.3",
"turf-distance": "^1.1.0",
"turf-envelope": "^1.0.2",
"turf-featurecollection": "^1.0.1",
"turf-inside": "^3.0.12",
"turf-intersect": "^3.0.12",
"turf-point": "^2.0.1",
"turf-within": "^3.0.5"
},
"devDependencies": {
"cli-color": "^1.2.0",
"eslint": "^4.18.2",
"eslint-config-mourner": "^2.0.1",
"husky": "^0.13.3",
"lint-staged": "^3.4.0",
"prettier": "^0.22.0",
"prettier-eslint-cli": "^3.2.0",
"tap": "^15.0.9"
}
}