-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 775 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 775 Bytes
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
{
"name": "core-assignment-week-10",
"version": "1.0.0",
"description": "HackYourFuture Core Program, week 10 assignment",
"scripts": {
"test": "vitest",
"test:run": "vitest run",
"test:task1": "vitest run task-1/tests",
"test:task2": "vitest run task-2/post-cli/tests",
"test:cocktail": "vitest run cocktail",
"test:me": "vitest run test-get -t getMe",
"test:get": "vitest run test-get",
"test:post": "vitest run test-post",
"test:crud": "vitest run test-crud"
},
"keywords": [],
"author": "HackYourFuture",
"license": "CC BY-NC-SA 4.0",
"type": "module",
"dependencies": {
"@inquirer/prompts": "^7.0.0",
"chalk": "^5.6.2",
"prompt-sync": "^4.2.0"
},
"devDependencies": {
"vitest": "^4.0.18"
}
}