-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
42 lines (42 loc) · 897 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": "^3.3.1"
},
"devDependencies": {
"eslint": "^8.54.0",
"eslint-config-mourner": "^3.0.0",
"tape": "^5.7.2"
},
"files": [
"index.js"
],
"scripts": {
"pretest": "eslint index.js test/*.js",
"test": "tape test/test*.js"
},
"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"
}