-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.8 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.8 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "refactor",
"version": "0.1.0",
"description": "CLI to aid developers in refactoring",
"main": "index.js",
"scripts": {
"lint": "eslint . ",
"lint:fix": "eslint . --fix",
"dev": "tsc -w",
"commit": "git-cz",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hendrixgotcodes/Refactor.git"
},
"keywords": [
"refactor",
"rename",
"directory",
"file",
"folder"
],
"author": "Samuel Opoku Asare",
"license": "MIT",
"bugs": {
"url": "https://github.com/hendrixgotcodes/Refactor/issues"
},
"homepage": "https://github.com/hendrixgotcodes/Refactor#readme",
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@types/figlet": "^1.5.4",
"@types/gradient-string": "^1.1.2",
"@types/inquirer": "^8.2.1",
"@types/lodash": "^4.14.182",
"@types/prompts": "^2.0.14",
"@types/yargs": "^12.0.2",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.17.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"prettier": "^2.6.2",
"typescript": "^4.7.2"
},
"dependencies": {
"ansi-colors": "^4.1.3",
"axios": "^0.27.2",
"chalk": "^5.0.1",
"figlet": "^1.5.2",
"gradient-string": "^2.0.1",
"inquirer": "^8.2.4",
"lodash": "^4.17.21",
"nanospinner": "^1.1.0",
"ora": "^6.1.0",
"yargs": "^12.0.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}