mirror of
https://github.com/bjornharrtell/jsts.git
synced 2026-01-18 14:08:37 +00:00
69 lines
1.7 KiB
JSON
69 lines
1.7 KiB
JSON
{
|
|
"name": "jsts",
|
|
"description": "A JavaScript library of spatial predicates and functions for processing geometry",
|
|
"version": "2.12.1",
|
|
"author": "Björn Harrtell <bjorn@wololo.org>",
|
|
"keywords": [
|
|
"JSTS",
|
|
"JavaScript",
|
|
"JTS",
|
|
"Java",
|
|
"Topology",
|
|
"Geometry"
|
|
],
|
|
"license": "(EDL-1.0 OR EPL-1.0)",
|
|
"devDependencies": {
|
|
"@rollup/plugin-commonjs": "^28.0.1",
|
|
"@rollup/plugin-node-resolve": "^15.3.0",
|
|
"@rollup/plugin-replace": "6.0.1",
|
|
"@rollup/plugin-terser": "^0.4.4",
|
|
"chai": "5.1.2",
|
|
"codecov": "3.8.3",
|
|
"eslint": "9.15.0",
|
|
"expect.js": "0.3.1",
|
|
"jquery": "3.7.1",
|
|
"jsdoc": "4.0.4",
|
|
"jsdom": "25.0.1",
|
|
"mocha": "10.8.2",
|
|
"mocha-lcov-reporter": "1.3.0",
|
|
"nyc": "17.1.0",
|
|
"rollup": "4.27.2",
|
|
"typescript": "^5.6.3"
|
|
},
|
|
"dependencies": {
|
|
"fastpriorityqueue": "^0.7.5"
|
|
},
|
|
"type": "module",
|
|
"typesVersions": {
|
|
"*": {
|
|
"*": ["types/*"]
|
|
}
|
|
},
|
|
"engines": {
|
|
"node": ">= 18"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/bjornharrtell/jsts.git"
|
|
},
|
|
"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",
|
|
"build-jsdoc": "jsdoc -c doc/jsdoc.json",
|
|
"gen-types": "tsc",
|
|
"build": "rollup -c rollup.config.js -o dist/jsts.min.js"
|
|
}
|
|
}
|