This repository was archived by the owner on Oct 27, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.05 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.05 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
64
65
66
67
68
69
70
71
72
73
74
{
"name": "matarikiprogram",
"version": "2.0.0",
"private": false,
"description": "A program to determine when the Matariki holiday will occur written in TypeScript using the Node.js runtime.",
"main": "build/index.js",
"scripts": {
"dev": "nodemon",
"format": "prettier --write src",
"lint": "eslint --fix src",
"prepare": "husky install",
"start": "tsc && node .",
"test": "jest -c ./jest.unit.json",
"test:coverage": "jest --coverage -c ./jest.unit.json"
},
"repository": {
"type": "git",
"url": "+https://github.com/r1zyn/MatarikiProgram"
},
"bugs": {
"url": "https://github.com/r1zyn/MatarikiProgram/issues"
},
"keywords": [
"api",
"node-fetch",
"jpl-horizons",
"matariki"
],
"author": {
"name": "r1zyn",
"email": "ascendus.dev@gmail.com",
"url": "https://github.com/r1zyn"
},
"contributors": [
{
"name": "JiachenHH",
"url": "https://github.com/JiachenHH"
},
{
"name": "SILentASSassinE",
"url": "https://github.com/SILentASSassinE"
},
{
"name": "tommy-duan-macleans",
"url": "https://github.com/tommy-duan-macleans"
}
],
"license": "GPL-3.0",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"chalk": "4.1.2",
"jest": "^28.1.3",
"lunar": "^0.0.3",
"lune": "^0.4.0",
"nodemon": "^2.0.19"
},
"devDependencies": {
"@types/jest": "^28.1.6",
"@types/node": "^18.0.3",
"@types/node-fetch": "^2.6.2",
"eslint": "^8.20.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"lodash": "^4.17.21",
"prettier": "^2.7.1",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4"
},
"engines": {
"node": "^17.2.0"
}
}