-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.09 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
{
"name": "myriahedron",
"version": "0.1.3",
"description": "generate a spatial myriahedron of arbitrary depth",
"main": "index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"lint": "eslint ./",
"test": "node test/",
"dev": "budo client/index.js",
"build": "browserify client/index.js > docs/index.js"
},
"author": "James Conkling <[email protected]> jameslaneconkling.github.io",
"license": "ISC",
"devDependencies": {
"browserify": "^14.4.0",
"budo": "^10.0.4",
"concat-stream": "^1.6.0",
"eslint": "^4.9.0",
"tape": "^4.8.0"
},
"dependencies": {
"@turf/area": "^5.0.4",
"@turf/boolean-contains": "^4.7.3",
"@turf/boolean-disjoint": "^4.7.3",
"@turf/combine": "^4.7.3",
"@turf/midpoint": "^5.0.4",
"d3-geo-projection": "^2.3.1",
"from2": "^2.3.0",
"geojson-stream": "0.0.1",
"polyk": "^0.24.0",
"ramda": "^0.25.0",
"topojson": "^3.0.2",
"world-atlas": "^1.1.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jameslaneconkling/myriahedron.git"
}
}