-
-
Notifications
You must be signed in to change notification settings - Fork 232
/
package.json
68 lines (68 loc) · 1.66 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"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"
}
}