-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 897 Bytes
/
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
{
"name": "magvar",
"version": "2.0.0",
"description": "Calculates magnetic variation at a specified location based upon the World Magnetic Model 2025-2030.",
"author": {
"name": "Darren Yeates",
"email": "[email protected]"
},
"license": "MIT",
"licenseFilename": "LICENSE",
"main": "src/magvar.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dpyeates/magvar.git",
"baseUrl": "https://github.com/dpyeates/magvar"
},
"keywords": [
"magvar",
"magnetic variation",
"world magnetic model",
"noaa",
"wmm",
"wmm 2025"
],
"bugs": {
"url": "https://github.com/dpyeates/magvar/issues"
},
"homepage": "https://github.com/dpyeates/magvar#readme",
"devDependencies": {
"jest": "^26.1.0"
},
"jest": {
"verbose": true,
"testEnvironment": "node"
}
}