-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.44 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
{
"name": "bistro",
"version": "1.0.0",
"description": "",
"main": "bistro-cli/bistro-cli.js",
"type": "module",
"scripts": {
"boot": "node bistro-cli/bistro-cli.js",
"lint": "eslint --config ./eslint.config.js --cache-location ./.eslintcache --cache",
"lint:fix": "eslint --config ./eslint.config.js --cache-location ./.eslintcache --cache --fix",
"prettier": "npx prettier bistro-cli --check",
"prettier:fix": "npm run prettier bistro-cli -- --write",
"test": "vitest --config ./vitest.config.js --coverage --watch false",
"test:watch": "vitest --config ./vitest.config.js",
"test:ui": "vitest --config ./vitest.config.js --ui",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"bin": {
"bistro": "bistro-cli/bistro-cli.js"
},
"dependencies": {
"chalk": "=5.4.1",
"figlet": "=1.8.0",
"fs-extra": "=11.2.0",
"ora": "=8.1.1",
"prompts": "=2.4.2",
"shelljs": "=0.8.5",
"winston": "=3.17.0",
"winston-daily-rotate-file": "=5.0.0",
"winston-transport": "=4.9.0"
},
"devDependencies": {
"@eslint/js": "=9.18.0",
"@trivago/prettier-plugin-sort-imports": "=5.2.1",
"@vitest/coverage-v8": "=2.1.8",
"@vitest/ui": "=2.1.8",
"eslint": "=9.18.0",
"eslint-config-prettier": "=10.0.1",
"eslint-plugin-prettier": "=5.2.1",
"globals": "=15.14.0",
"husky": "=9.1.7",
"prettier": "=3.4.2",
"vitest": "=2.1.8"
}
}