-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.4 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": "src/bistro-cli.js",
"type": "module",
"scripts": {
"boot": "node src/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 src --check",
"prettier:fix": "npm run prettier src -- --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": "src/bistro-cli.js"
},
"dependencies": {
"chalk": "^5.3.0",
"figlet": "^1.7.0",
"fs-extra": "^11.2.0",
"ora": "^8.0.1",
"prompts": "^2.4.2",
"shelljs": "^0.8.5",
"winston": "^3.5.1",
"winston-daily-rotate-file": "^4.6.0",
"winston-transport": "^4.5.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.8.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@vitest/coverage-v8": "^2.0.5",
"@vitest/ui": "^2.0.5",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.4",
"prettier": "^3.3.3",
"vitest": "^2.0.5"
}
}