-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.68 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "maldives-reports-2022",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"engines": {
"node": ">=16.0.0",
"npm": ">=8.5.0"
},
"scripts": {
"ts-node": "ts-node --transpile-only --compiler-options '{\"esModuleInterop\":true, \"module\":\"commonjs\"}'",
"start-data": "http-server data/dist -c-1",
"__test": "geoprocessing test",
"test": "npm run test:unit && npm run test:smoke",
"test:unit": "npm run __test -- --group=unit",
"test:unit:matching": "npm run __test -- --runInBand --group=unit -t",
"test:smoke": "start-server-and-test start-data 8080 'npm run __test -- --runInBand --group=smoke --silent'",
"test:smoke:matching": "npm run __test -- --runInBand --group=smoke -t",
"add:template": "geoprocessing add:template",
"create:function": "geoprocessing create:function",
"create:client": "geoprocessing create:client",
"start:client": "geoprocessing start:client",
"synth": "geoprocessing synth",
"bootstrap": "geoprocessing bootstrap",
"deploy": "geoprocessing deploy",
"build": "geoprocessing build:lambda && geoprocessing build:client",
"build:client": "geoprocessing build:client",
"build:lambda": "geoprocessing build:lambda",
"start-storybook": "geoprocessing start-storybook",
"url": "geoprocessing url",
"clear-results": "geoprocessing clear-results",
"clear-all-results": "geoprocessing clear-all-results"
},
"keywords": [
"@seasketch/geoprocessing"
],
"dependencies": {
"@turf/area": "^6.3.0",
"@turf/bbox": "^6.3.0",
"@turf/bbox-clip": "^6.3.0",
"@turf/bbox-polygon": "^6.4.0",
"@turf/buffer": "^6.4.0",
"@turf/combine": "^6.3.0",
"@turf/dissolve": "^6.4.0",
"@turf/explode": "^6.4.0",
"@turf/flatten": "^6.3.0",
"@turf/helpers": "^6.3.0",
"@turf/invariant": "^6.3.0",
"@turf/kinks": "^6.5.0",
"@turf/points-within-polygon": "^6.4.0",
"flatgeobuf": "^3.17.4",
"geoblaze": "^0.3.2",
"georaster": "1.5.4",
"simple-statistics": "^7.7.0",
"union-subdivided-polygons": "^0.9.1",
"web-streams-polyfill": "^3.0.3"
},
"devDependencies": {
"@seasketch/geoprocessing": "0.15.1-alpha.22",
"@turf/boolean-disjoint": "6.3.0",
"@turf/boolean-valid": "6.3.0"
},
"repositoryUrl": "https://github.com/mcclintock-lab/maldives-reports",
"author": "Tim Welch",
"license": "MIT",
"templates": [
"gp-clip-ocean"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mcclintock-lab/maldives-reports.git"
},
"homepage": "https://github.com/mcclintock-lab/maldives-reports#readme",
"bugs": {
"url": "https://github.com/mcclintock-lab/maldives-reports/issues"
}
}