| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- {
- "name": "@turf/meta",
- "version": "7.2.0",
- "description": "turf meta module",
- "author": "Turf Authors",
- "contributors": [
- "Tom MacWright <@tmcw>",
- "Daniel Pulido <@dpmcmlxxvi>",
- "Denis Carriere <@DenisCarriere>"
- ],
- "license": "MIT",
- "bugs": {
- "url": "https://github.com/Turfjs/turf/issues"
- },
- "homepage": "https://github.com/Turfjs/turf",
- "repository": {
- "type": "git",
- "url": "git://github.com/Turfjs/turf.git"
- },
- "funding": "https://opencollective.com/turf",
- "publishConfig": {
- "access": "public"
- },
- "keywords": [
- "functional",
- "programming",
- "turfjs",
- "geojson",
- "meta",
- "flattenEach",
- "flattenReduce",
- "segmentEach",
- "segmentReduce",
- "coordEach",
- "coordReduce",
- "propEach",
- "propReduce",
- "featureEach",
- "featureReduce",
- "coordAll",
- "geomEach",
- "geomReduce",
- "lineEeach",
- "lineReduce"
- ],
- "type": "module",
- "main": "dist/cjs/index.cjs",
- "module": "dist/esm/index.js",
- "types": "dist/esm/index.d.ts",
- "exports": {
- "./package.json": "./package.json",
- ".": {
- "import": {
- "types": "./dist/esm/index.d.ts",
- "default": "./dist/esm/index.js"
- },
- "require": {
- "types": "./dist/cjs/index.d.cts",
- "default": "./dist/cjs/index.cjs"
- }
- }
- },
- "sideEffects": false,
- "files": [
- "dist"
- ],
- "scripts": {
- "bench": "tsx bench.ts",
- "build": "tsup --config ../../tsup.config.ts",
- "docs": "tsx ../../scripts/generate-readmes.ts",
- "test": "npm-run-all --npm-path npm test:*",
- "test:tape": "tsx test.ts",
- "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts"
- },
- "devDependencies": {
- "@turf/random": "^7.2.0",
- "@types/benchmark": "^2.1.5",
- "benchmark": "^2.1.4",
- "npm-run-all": "^4.1.5",
- "tape": "^5.9.0",
- "tsup": "^8.3.5",
- "tsx": "^4.19.2"
- },
- "dependencies": {
- "@turf/helpers": "^7.2.0",
- "@types/geojson": "^7946.0.10"
- },
- "gitHead": "7b0f0374c4668cd569f8904c71e2ae7d941be867"
- }
|