forked from tubalmartin/spherical-geometry
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
64 lines (64 loc) · 1.49 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
{
"name": "spherical-geometry-js",
"version": "3.0.2",
"description": "This library provides classes and functions for the computation of geometric data on the surface of the Earth. Code ported from the Google Maps Javascript API v3",
"license": "MIT",
"author": {
"name": "Tiger Oakes",
"email": "[email protected]",
"url": "https://tigeroakes.com"
},
"repository": "NotWoods/spherical-geometry-js",
"bugs": "https://github.com/NotWoods/spherical-geometry-js/issues",
"homepage": "https://github.com/NotWoods/spherical-geometry-js#readme",
"type": "module",
"exports": {
"./package.json": "./package.json",
".": "./src/index.js"
},
"main": "src/index.js",
"module": "src/index.js",
"types": "src/index.d.ts",
"sideEffects": false,
"scripts": {
"test": "ava",
"lint": "prettier \"src/**/*.js\" \"test/**/*.{js,json,html}\" \"**/README.md\" --write"
},
"keywords": [
"google",
"geometry",
"spherical",
"geometry",
"google",
"maps",
"google",
"maps",
"api",
"google",
"maps",
"javascript",
"geometric"
],
"devDependencies": {
"@types/node": "^12.20.55",
"ava": "^4.0.0",
"prettier": "~2.8.8",
"typescript": "^5.5.4"
},
"files": [
"src"
],
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"proseWrap": "always"
},
"ava": {
"files": [
"test/**/*.spec.js"
]
}
}