-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.55 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
{
"name": "upcoming-holidays-cli",
"version": "1.0.4",
"description": "CLI built in Node.js that retrieves the next 5 occurring public holidays",
"main": "index.js",
"type": "module",
"scripts": {
"test": "vitest",
"coverage": "vitest run --coverage",
"build": "rimraf ./build && tsc && copyfiles public/*.png build",
"local": "sudo npm i -g && holidays",
"start:dev": "nodemon",
"start": "npm run build && node build/index.js --countryCode=CO",
"lint": "eslint . --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JenyMzo/holiday-CLI.git"
},
"bin": {
"holidays": "./build/index.js"
},
"author": "Jeny Mazo",
"license": "MIT",
"bugs": {
"url": "https://github.com/JenyMzo/holiday-CLI/issues"
},
"homepage": "https://github.com/JenyMzo/holiday-CLI#readme",
"devDependencies": {
"@types/clear": "^0.1.2",
"@types/figlet": "^1.5.4",
"@types/minimist": "^1.2.2",
"@types/node": "^18.7.8",
"@types/node-persist": "^3.1.2",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"eslint": "^8.22.0",
"nodemon": "^2.0.19",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"vitest": "^0.22.1"
},
"dependencies": {
"chalk": "^4.1.2",
"clear": "^0.1.0",
"commander": "^9.4.0",
"figlet": "^1.5.2",
"minimist": "^1.2.6",
"node-fetch": "^3.2.10",
"node-persist": "^3.1.0",
"reflect-metadata": "^0.1.13",
"typedi": "^0.10.0",
"vite": "^3.0.9"
}
}