forked from mapbox/linematch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 909 Bytes
/
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
{
"name": "linematch",
"version": "1.1.1",
"description": "A fast algorithm for comparing sets of polylines (e.g. road networks).",
"main": "index.js",
"dependencies": {
"flatbush": "^2.0.1"
},
"devDependencies": {
"eslint": "^4.19.0",
"eslint-config-mourner": "^2.0.3",
"tap": "^11.1.2"
},
"files": [
"index.js"
],
"scripts": {
"test": "eslint index.js && tap test/test*.js",
"cov": "tap test/test*.js --cov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mapbox/linematch.git"
},
"keywords": [
"algorithm",
"line",
"geometry",
"match",
"geo",
"difference"
],
"eslintConfig": {
"extends": "mourner"
},
"author": "Vladimir Agafonkin",
"license": "ISC",
"bugs": {
"url": "https://github.com/mapbox/linematch/issues"
},
"homepage": "https://github.com/mapbox/linematch#readme"
}