-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.21 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.21 KB
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
{
"name": "arc",
"version": "1.0.0",
"description": "draw great circle arcs",
"url": "https://github.com/springmeyer/arc.js",
"keywords": [
"maps",
"spherical",
"globe",
"rhumb line",
"crow flies",
"great circle",
"typescript"
],
"contributors": [
"Dane Springmeyer <dane.springmeyer@gmail.com>",
"John Gravois <jagravois@gmail.com>",
"Thomas Hervey <thomasahervey@gmail.com>"
],
"repository": {
"type": "git",
"url": "git://github.com/springmeyer/arc.js.git"
},
"license": "BSD",
"type": "module",
"exports": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"files": [
"dist/",
"src/",
"README.md",
"LICENSE.md",
"CHANGELOG.md"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "npm run clean && tsc",
"clean": "rm -rf dist/",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/geojson": "^7946.0.16",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.0",
"expect-type": "^1.2.2",
"jest": "^29.7.0",
"ts-jest": "^29.4.3",
"typescript": "^5.0.0"
}
}