turf/packages/turf-explode/package.json
mfedderly 6af3358c10
Tree shaking (#1869)
Further build standardization
- Typescript publishes modules
- All packages have sideEffects: false to enable tree shaking
- All projects use prepare instead of duplicating in the pretest command
- Standardize order of package.json files
- turf-bbox export hack to fix @turf/turf build

Co-authored-by: Matt Fedderly <mfedderly@palantir.com>
2020-03-24 06:29:34 -04:00

51 lines
1.2 KiB
JSON

{
"name": "@turf/explode",
"version": "5.1.5",
"description": "turf explode module",
"author": "Turf Authors",
"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"
},
"keywords": [
"turf",
"geojson",
"geospatial",
"coordinates"
],
"main": "dist/js/index.js",
"module": "dist/es/index.js",
"types": "index.d.ts",
"sideEffects": false,
"files": [
"dist",
"index.d.ts"
],
"scripts": {
"bench": "npm-run-all prepare bench:run",
"bench:run": "node bench.js",
"docs": "node ../../scripts/generate-readmes",
"posttest": "node -r esm ../../scripts/validate-es5-dependencies.js",
"prepare": "rollup -c ../../rollup.config.js",
"test": "npm-run-all prepare test:*",
"test:tape": "node -r esm test.js"
},
"devDependencies": {
"benchmark": "*",
"geojson-fixtures": "*",
"load-json-file": "*",
"rollup": "*",
"tape": "*",
"write-json-file": "*"
},
"dependencies": {
"@turf/helpers": "6.x",
"@turf/meta": "6.x"
}
}