-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.14 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
{
"name": "headlands",
"version": "1.1.0",
"description": "Calculate agricultural headlands from GeoJSON polygons",
"main": "dist/headland.cjs.js",
"module": "dist/headland.esm.js",
"browser": "dist/headland.min.js",
"license": "MIT",
"author": {
"name": "Christoph Pahmeyer",
"email": "[email protected]",
"url": "https://github.com/chrispahm"
},
"dependencies": {
"@turf/turf": "^5.1.6",
"polygon-clipping": "^0.14.3"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-node-resolve": "^8.0.1",
"rollup": "^2.13.1",
"rollup-plugin-terser": "^6.1.0"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "node test/test.js",
"serve": "npx serve docs",
"pretest": "npm run build"
},
"keywords": [
"agriculture,",
"headland,",
"landwirtschaft,",
"vorgewende,",
"plot"
],
"repository": {
"type": "git",
"url": "git://github.com/fruchtfolge/headlands.git"
},
"homepage": "https://github.com/chrispahm/vorgewende",
"bugs": {
"url": "https://github.com/chrispahm/vorgewende/issues"
}
}