-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.5 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
{
"name": "@tsastro/tsofa",
"version": "18.1.0",
"type": "module",
"description": "a typescript transcription of the IAU SOFA library",
"author": "Paul Harrison <paul.harrison@manchester.ac.uk>",
"license": "MIT",
"private": false,
"scripts": {
"build": "tsc",
"test": "jest",
"doc": "typedoc src/main/ts/TSOFA.ts",
"eslint": "eslint ."
},
"exports": "./dist/TSOFA.js",
"types": "dist/TSOFA.d.ts",
"files": [
"/dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tsastro/tsofa.git"
},
"keywords": [
"Astrometry",
"Astronomy"
],
"bugs": {
"url": "https://github.com/tsastro/tsofa/issues"
},
"homepage": "https://github.com/tsastro/tsofa#readme",
"devDependencies": {
"@eslint/js": "^8.57.0",
"@jest/globals": "^29.7.0",
"@tsconfig/node22": "^22.0.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.7.1",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsdoc": "^46.8.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"globals": "^15.9.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.1",
"typedoc": "^0.25.6",
"typescript": "^5.2.2",
"typescript-eslint": "^8.3.0"
},
"dependencies": {}
}