-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
48 lines (48 loc) · 1.24 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
{
"dependencies": {
"@google/generative-ai": "^0.17.1",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"markdown-it": "^14.1.0",
"toml": "^3.0.0",
"yocto-spinner": "^0.1.0"
},
"name": "refactorcode",
"version": "1.0.0",
"description": "A console application to reduce bugs, improve performance and improve readability of your code.",
"main": "./src/main.js",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"format": "prettier --write \"**/*.{js,ts,html,css,md,json}\"",
"lint": "eslint . ",
"lint:fix": "eslint . --fix "
},
"keywords": [
"refactor",
"code",
"performance",
"bugs",
"readability"
],
"author": "Brokoli777",
"repository": {
"type": "git",
"url": "https://github.com/brokoli777/RefactorCode"
},
"license": "ISC",
"bin": {
"refactorcode": "src/main.js"
},
"type": "module",
"devDependencies": {
"@eslint/js": "^9.13.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.11.0",
"jest": "^29.7.0",
"msw": "^2.6.0",
"prettier": "3.3.3"
}
}