forked from Turfjs/turf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 1.81 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
78
79
80
81
82
83
{
"private": true,
"version": "5.0.0",
"description": "a node.js library for performing geospatial operations with geojson",
"scripts": {
"prelint": "tsc",
"lint": "eslint packages/turf-*/index.js",
"postlint": "documentation lint packages/turf-*/index.js",
"pretest": "lerna bootstrap && npm run lint",
"test": "lerna run test",
"docs": "node ./scripts/generate-readmes",
"5to6": "jscodeshift -t node_modules/5to6-codemod/transforms/cjs.js packages/turf-*/bench.js"
},
"repository": {
"type": "git",
"url": "https://github.com/turfjs/turf.git"
},
"keywords": [
"gis",
"geo",
"geojs",
"geospatial",
"geography",
"geometry",
"map",
"contour",
"centroid",
"tin",
"extent",
"geojson",
"grid",
"polygon",
"line",
"point",
"area",
"analysis",
"statistics",
"stats",
"midpoint",
"plane",
"quantile",
"jenks",
"sample"
],
"author": "morganherlocker",
"license": "MIT",
"bugs": {
"url": "https://github.com/Turfjs/turf/issues"
},
"devDependencies": {
"5to6-codemod": "*",
"@std/esm": "*",
"@types/geojson": "*",
"@types/node": "*",
"@types/tape": "*",
"babel-plugin-external-helpers": "*",
"babel-preset-env": "*",
"camelcase": "*",
"d3-queue": "*",
"decamelize": "*",
"documentation": "*",
"eslint": "*",
"eslint-config-mourner": "*",
"fs-extra": "*",
"jscodeshift": "*",
"lerna": "*",
"load-json-file": "*",
"meow": "*",
"progress": "*",
"rollup": "*",
"rollup-plugin-buble": "*",
"rollup-plugin-commonjs": "*",
"rollup-plugin-node-resolve": "*",
"rollup-plugin-uglify": "*",
"tape": "*",
"typescript": "*",
"yamljs": "*"
},
"@std/esm": {
"esm": "js",
"cjs": true
}
}