-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
57 lines (57 loc) · 1.68 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
{
"name": "ootk-core",
"version": "1.2.5",
"type": "module",
"module": "dist/main.js",
"description": "Orbital Object Toolkit. A modern typed replacement for satellite.js including SGP4 propagation, TLE parsing, Sun and Moon calculations, and more.",
"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-core"
},
"keywords": [
"satellite",
"sgp4",
"sun",
"moon",
"orbit",
"space",
"toolkit"
],
"author": "Theodore Kruczek <theodore.kruczek@gmail.com> (https://github.com/thkruz/ootk-core/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/thkruz/ootk-core/issues"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/plugin-transform-runtime": "^7.23.7",
"@babel/preset-env": "^7.23.8",
"@babel/preset-typescript": "^7.23.3",
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"auto-changelog": "^2.4.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^9.1.3",
"eslint": "^8.56.0",
"eslint-plugin-jsdoc": "^48.0.2",
"fix-esm-import-path": "^1.5.0",
"jest": "^28.1.3",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.2",
"tsx": "^4.7.1",
"typescript": "^5.4.3"
},
"homepage": "https://github.com/thkruz/ootk-core"
}