UNPKG

@mkerkstra/jsts-cjs

Version:

A CommonJS fork of JSTS: A JavaScript library of spatial predicates and functions for processing geometry

63 lines (62 loc) 1.75 kB
{ "name": "@mkerkstra/jsts-cjs", "description": "A CommonJS fork of JSTS: A JavaScript library of spatial predicates and functions for processing geometry", "version": "0.0.2", "author": "M Kerkstra (Original Author: Björn Harrtell <bjorn@wololo.org>)", "keywords": [ "JSTS", "JavaScript", "JTS", "Java", "Topology", "Geometry", "CommonJS" ], "main": "./dist/jsts.js", "license": "(EDL-1.0 OR EPL-1.0)", "engines": { "node": ">= 16" }, "repository": { "type": "git", "url": "git://github.com/mkerkstra/jsts-cjs.git" }, "devDependencies": { "@babel/core": "7.22.11", "@babel/eslint-parser": "7.22.11", "@babel/preset-env": "7.22.10", "@rollup/plugin-babel": "6.0.3", "@rollup/plugin-replace": "5.0.2", "@rollup/plugin-terser": "^0.4.3", "chai": "4.3.8", "codecov": "3.8.3", "eslint": "8.48.0", "expect.js": "0.3.1", "jquery": "3.7.1", "jsdoc": "4.0.2", "jsdom": "22.1.0", "mocha": "10.2.0", "mocha-lcov-reporter": "1.3.0", "nyc": "15.1.0", "rollup": "3.28.1" }, "standard": { "globals": [ "describe", "it", "jsts", "ol" ] }, "scripts": { "lint": "eslint src", "lint-fix": "eslint src --fix", "lint-test-fix": "eslint test --fix", "test-manual": "mocha --timeout 10s --recursive test/manual", "test": "nyc mocha --timeout 10s --recursive test/auto/node test/manual", "test-perf": "0x -- node $(which _mocha) --timeout 10s --recursive test/auto/node test/manual", "coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov", "build-jsdoc": "jsdoc -c doc/jsdoc.json", "build": "rollup -c rollup.config.js --bundleConfigAsCjs" } }