-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
72 lines (72 loc) · 1.84 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
62
63
64
65
66
67
68
69
70
71
72
{
"name": "tle.js",
"version": "4.9.0",
"description": "Satellite TLE tools in JavaScript.",
"type": "module",
"main": "./dist/tlejs.umd.js",
"browser": "./dist/tlejs.umd.js",
"module": "./dist/tlejs.esm.js",
"exports": {
"import": "./dist/tlejs.esm.js",
"require": "./dist/tlejs.cjs"
},
"types": "./dist/tlejs.d.ts",
"engines": {
"node": ">=12"
},
"scripts": {
"build": "rimraf dist && rollup --config",
"prepare": "npm run build",
"test": "jest",
"patch": "npm version patch && npm run npm-publish",
"minor": "npm version minor && npm run npm-publish",
"major": "npm version major && npm run npm-publish",
"npm-publish": "npm publish && git push && git push --tags",
"bump": "npm outdated & npm update && npm audit fix && npm test"
},
"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": "^4.1.3"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"babel-eslint": "^10.1.0",
"babel-jest": "^29.0.2",
"eslint": "^8.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"jest": "^29.0.2",
"prettier": "^2.5.1",
"ramda": "^0.28.0",
"rimraf": "^3.0.2",
"rollup": "^2.62.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-dts": "^4.1.0",
"typescript": "^4.5.4"
}
}