-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
37 lines (37 loc) · 871 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
{
"name": "sgp4",
"version": "1.0.11",
"description": "A NodeJS port of python-sgp4 used for predicting and calculating orbital information of satellites from TLE data.",
"main": "sgp4.js",
"scripts": {
"test": "node node_modules/mocha/bin/mocha test/test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/joshuaferrara/node-sgp4.git"
},
"keywords": [
"sgp4",
"node-sgp4",
"satellite",
"tle",
"norad",
"wgs84",
"wgs72"
],
"author": "Joshua Ferrara",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/joshuaferrara/node-sgp4/blob/master/LICENSE"
}
],
"bugs": {
"url": "https://github.com/joshuaferrara/node-sgp4/issues"
},
"homepage": "https://github.com/joshuaferrara/node-sgp4",
"devDependencies": {
"mocha": "5.2.0",
"expect.js": "*"
}
}