-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
43 lines (43 loc) · 978 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
43
{
"name": "random-points-on-polygon",
"version": "0.0.4",
"description": "Create N number of random points inside of a polygon",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/apburnes/random-points-on-polygon.git"
},
"keywords": [
"turf",
"random",
"points",
"generate",
"inside",
"polygon",
"geojson",
"gis"
],
"author": "apburnes <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/apburnes/random-points-on-polygon/issues"
},
"homepage": "https://github.com/apburnes/random-points-on-polygon#readme",
"dependencies": {
"turf-extent": "^1.0.4",
"turf-featurecollection": "^1.0.1",
"turf-inside": "^1.1.4",
"turf-random": "^1.0.2"
},
"devDependencies": {
"chai": "^3.2.0",
"geojsonhint": "^1.1.0",
"mocha": "^2.2.5"
}
}