-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
42 lines (42 loc) · 934 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": "lineclip",
"version": "1.1.5",
"description": "A fast polyline and polygon clipping library.",
"main": "index.js",
"devDependencies": {
"benchmark": "^2.1.4",
"eslint": "^5.1.0",
"eslint-config-mourner": "^2.0.3",
"tap": "^12.0.1"
},
"scripts": {
"test": "eslint index.js test.js && tap test.js",
"cov": "tap test.js --cov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mapbox/lineclip.git"
},
"keywords": [
"algorithm",
"line",
"polyline",
"polygon",
"geometry",
"clip",
"geo",
"cohen-sutherland"
],
"eslintConfig": {
"extends": "mourner",
"rules": {
"indent": [2, 4, {"flatTernaryExpressions": true}]
}
},
"author": "Vladimir Agafonkin",
"license": "ISC",
"bugs": {
"url": "https://github.com/mapbox/lineclip/issues"
},
"homepage": "https://github.com/mapbox/lineclip#readme"
}