-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.04 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.04 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
{
"name": "factorial-cli",
"version": "1.0.17",
"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": "^25.0.0",
"@types/yargs": "^17.0.32",
"prettier": "^3.2.5",
"rimraf": "^6.0.0",
"typescript": "^5.3.3",
"vitest": "^3.0.1"
},
"dependencies": {
"camelcase-keys": "^10.0.0",
"yargs": "^18.0.0",
"zod": "^4.0.2"
}
}