UNPKG

1.8 kBJSONView Raw
1{
2 "name": "jsts",
3 "description": "A JavaScript library of spatial predicates and functions for processing geometry",
4 "version": "2.11.3",
5 "author": "Björn Harrtell <bjorn@wololo.org>",
6 "keywords": [
7 "JSTS",
8 "JavaScript",
9 "JTS",
10 "Java",
11 "Topology",
12 "Geometry"
13 ],
14 "license": "(EDL-1.0 OR EPL-1.0)",
15 "devDependencies": {
16 "@babel/core": "7.24.5",
17 "@babel/eslint-parser": "7.24.5",
18 "@babel/preset-env": "7.24.5",
19 "@rollup/plugin-babel": "6.0.4",
20 "@rollup/plugin-commonjs": "^25.0.7",
21 "@rollup/plugin-node-resolve": "^15.2.3",
22 "@rollup/plugin-replace": "5.0.5",
23 "@rollup/plugin-terser": "^0.4.4",
24 "chai": "5.1.0",
25 "codecov": "3.8.3",
26 "eslint": "9.2.0",
27 "expect.js": "0.3.1",
28 "jquery": "3.7.1",
29 "jsdoc": "4.0.3",
30 "jsdom": "24.0.0",
31 "mocha": "10.4.0",
32 "mocha-lcov-reporter": "1.3.0",
33 "nyc": "15.1.0",
34 "rollup": "4.17.2"
35 },
36 "type": "module",
37 "engines": {
38 "node": ">= 16"
39 },
40 "repository": {
41 "type": "git",
42 "url": "git://github.com/bjornharrtell/jsts.git"
43 },
44 "standard": {
45 "globals": [
46 "describe",
47 "it",
48 "jsts",
49 "ol"
50 ]
51 },
52 "scripts": {
53 "lint": "eslint src",
54 "lint-fix": "eslint src --fix",
55 "lint-test-fix": "eslint test --fix",
56 "test-manual": "mocha --timeout 10s --recursive test/manual",
57 "test": "nyc mocha --timeout 10s --recursive test/auto/node test/manual",
58 "test-perf": "0x -- node $(which _mocha) --timeout 10s --recursive test/auto/node test/manual",
59 "coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
60 "build-jsdoc": "jsdoc -c doc/jsdoc.json",
61 "build": "rollup -c rollup.config.js -o dist/jsts.min.js"
62 },
63 "dependencies": {
64 "fastpriorityqueue": "^0.7.5"
65 }
66}