-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 926 Bytes
/
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
{
"name": "astropc-ts",
"version": "1.0.0",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/ilbagatto/astropc-ts.git"
},
"scripts": {
"build": "rimraf dist && tsc --emitDeclarationOnly",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint src --fix",
"format": "prettier . --write",
"prepare": "husky"
},
"keywords": [],
"author": "ilbagatto <[email protected]>",
"license": "ISC",
"description": "Base calculations for practical astronomy.",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.10.5",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.3.0",
"prettier": "3.4.2",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.1"
}
}