forked from gitovep/gitove
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.31 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "gitove",
"version": "0.2.5",
"type": "module",
"description": "An interactive git cli tool for consistant commit messages.",
"license": "MIT",
"keywords": [
"git"
],
"author": "",
"repository": {
"type": "git",
"url": "https://github.com/gitovep/gitove"
},
"homepage": "https://github.com/gitovep/gitove",
"main": "./lib/index.js",
"files": [
"lib"
],
"engines": {
"node": ">=16"
},
"scripts": {
"gen": "pnpm typia generate --input src --output gen --project tsconfig.json",
"build": "pnpm gen && babel gen -d lib --extensions \".ts\"",
"start": "pnpm build && node lib/index.js",
"lint": "eslint './src/**/*.{ts,tsx,js,jsx}'",
"lint:fix": "eslint --fix './src/**/*.{ts,tsx,js,jsx}'",
"test": "jest ./test",
"prepare": "husky install"
},
"bin": {
"gitove": "lib/index.js"
},
"dependencies": {
"commander": "^11.0.0",
"execa": "7.2.0",
"fuse.js": "^6.6.2",
"inquirer": "^9.2.10",
"inquirer-autocomplete-prompt": "^3.0.0",
"typia": "^4.2.1"
},
"devDependencies": {
"@babel/cli": "^7.22.10",
"@babel/core": "^7.22.10",
"@babel/preset-typescript": "^7.22.5",
"@types/commander": "^2.12.2",
"@types/inquirer": "^8.2.6",
"@types/inquirer-autocomplete-prompt": "^3.0.0",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.8",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"babel-plugin-module-extension-resolver": "^1.0.0",
"babel-plugin-module-resolver": "^5.0.0",
"eslint": "^8.46.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-plugin-import": "^2.28.0",
"husky": "^8.0.0",
"jest": "^29.6.2",
"lint-staged": "^13.2.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"ts-patch": "^3.0.2",
"typescript": "^5.1.6"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": "eslint --cache --fix"
},
"jest": {
"moduleDirectories": [
"node_modules",
"src"
],
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"moduleNameMapper": {
"src/(.*)$": "<rootDir>/src/$1"
},
"rootDir": ".",
"testEnvironment": "node",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
}
}
}