-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 982 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 982 Bytes
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
{
"name": "@markroland/path-helper",
"version": "1.40.0",
"description": "Utility functions for working with points, paths and geometry.",
"main": "src/PathHelper.js",
"scripts": {
"docs": "jsdoc ./src -d docs",
"lint": "eslint ./src",
"test": "jest",
"demo": "node ./demo/index.js"
},
"files": [
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/markroland/path-helper.git"
},
"keywords": [
"points",
"paths",
"geometry",
"polyline"
],
"author": "Mark Roland",
"license": "SEE LICENSE IN README.md",
"bugs": {
"url": "https://github.com/markroland/path-helper/issues"
},
"homepage": "https://github.com/markroland/path-helper#readme",
"devDependencies": {
"@eslint/js": "^9.16.0",
"eslint": "^9.16.0",
"express": "^4.18.1",
"globals": "^15.13.0",
"jest": "^27.5.1",
"jsdoc": "^4.0.2"
},
"engines": {
"node": ">=22.x",
"npm": ">=10.x"
}
}