-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.74 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.74 KB
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
{
"name": "tle.js",
"version": "5.0.2",
"description": "Satellite TLE tools in JavaScript.",
"main": "src/index.js",
"type": "module",
"types": "src/index.d.ts",
"engines": {
"node": ">=20"
},
"scripts": {
"bump": "npm outdated & npm update && npm audit fix && npm test",
"lint": "eslint .",
"major": "npm version major && npm run npm-publish",
"minor": "npm version minor && npm run npm-publish",
"npm-publish": "npm publish && git push && git push --tags",
"patch": "npm version patch && npm run npm-publish",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/davidcalhoun/tle.js.git"
},
"keywords": [
"satellite",
"satellites",
"tle",
"two-line element set",
"space",
"tle",
"geodesy",
"geodetics",
"satellite.js"
],
"author": "David Calhoun",
"license": "MIT",
"bugs": {
"url": "https://github.com/davidcalhoun/tle.js/issues"
},
"homepage": "https://github.com/davidcalhoun/tle.js",
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
},
"dependencies": {
"satellite.js": "^6.0.0"
},
"devDependencies": {
"@babel/core": "^7.27.1",
"@babel/preset-env": "^7.27.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^29.7.0",
"eslint": "^9.26.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"globals": "^16.0.0",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"ramda": "^0.30.1",
"rimraf": "^6.0.1",
"typescript": "^5.8.3"
}
}