-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.7 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
{
"name": "ootk",
"version": "4.0.2",
"type": "module",
"module": "dist/main.js",
"description": "Orbital Object Toolkit including Multiple Propagators, Initial Orbit Determination, and Maneuver Calculations.",
"scripts": {
"build": "npm run clean && npx tsc -p tsconfig.build.json",
"clean": "node ./scripts/cleanup.mjs",
"lint": "npx eslint src",
"lint:fix": "npx eslint src --fix",
"test": "jest",
"test:coverage": "jest --coverage",
"version": "npm run build && auto-changelog && git add CHANGELOG.md"
},
"main": "dist/main.js",
"typings": "dist/main.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/thkruz/ootk"
},
"keywords": [
"sgp4",
"orbit",
"toolkit",
"space",
"satellite",
"radar",
"iod"
],
"author": "Theodore Kruczek <theodore.kruczek@gmail.com> (https://github.com/ootk/)",
"license": "APGL-3.0",
"bugs": {
"url": "https://github.com/thkruz/ootk/issues"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/plugin-transform-runtime": "^7.24.3",
"@babel/preset-env": "^7.24.3",
"@babel/preset-typescript": "^7.24.1",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"auto-changelog": "^2.4.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"eslint": "^8.57.0",
"eslint-plugin-jsdoc": "^48.2.2",
"fix-esm-import-path": "^1.5.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsx": "^4.7.1",
"typescript": "^5.4.3"
},
"dependencies": {
"ootk-core": "^1.2.4"
},
"homepage": "https://github.com/thkruz/ootk"
}