-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
36 lines (36 loc) · 1.04 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
{
"name": "factorial-cli",
"version": "1.0.10",
"type": "module",
"description": "Fill your factorial shifts with ease",
"main": "dist/src/infrastructure/cli/main.js",
"bin": {
"factorial": "dist/src/infrastructure/cli/main.js"
},
"repository": "https://github.com/DanielRamosAcosta/factorial-cli",
"homepage": "https://github.com/DanielRamosAcosta/factorial-cli",
"scripts": {
"test": "npm run test:unitary",
"test:unitary": "vitest --config vite.config.unitary.ts",
"test:integration": "vitest --config vite.config.integration.ts",
"test:e2e": "vitest --config vite.config.e2e.ts",
"build": "tsc",
"clean": "rimraf dist coverage",
"typecheck": "tsc --noEmit"
},
"author": "Daniel Ramos Acosta",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.0.0",
"@types/yargs": "^17.0.32",
"prettier": "^3.2.5",
"rimraf": "^6.0.0",
"typescript": "^5.3.3",
"vitest": "^2.0.0"
},
"dependencies": {
"camelcase-keys": "^9.1.3",
"yargs": "^17.7.2",
"zod": "^3.22.4"
}
}