-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.19 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
{
"name": "@tsastro/astrolib",
"version": "0.2.0",
"type": "module",
"description": "Astrometry library",
"files": [
"dist/"
],
"scripts": {
"build": "tsc",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"testconf": "jest --showConfig",
"doc": "typedoc src/main/AstroLib.ts",
"eslint": "eslint .",
"start": "node astrolib.ts",
"start:dev": "node -r ts-node/register astrolib.ts"
},
"exports": "./dist/AstroLib.js",
"types": "./dist/Astrolib.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/tsastro/astrolib.git"
},
"private": false,
"dependencies": {
"@buge/ts-units": "^1.2.3",
"@tsastro/tsofa": "^18.1.0",
"common-js": "^0.3.8"
},
"devDependencies": {
"@eslint/js": "^8.57.0",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.7.1",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsdoc": "^46.8.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"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"
}
}