-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.34 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
{
"name": "evergit",
"version": "0.2.0",
"description": "A CLI tool for generating commit messages that adhere to the Evergreen ILS project's commit policy.",
"main": "src/main.ts",
"bin": {
"evergit": "dist/main.js"
},
"scripts": {
"start": "node dist/main.js",
"build": "tsc",
"format": "prettier --write . --config .prettierrc",
"format-check": "prettier --check . --config .prettierrc",
"check-unused": "ts-prune -p tsconfig.json",
"prepare": "npm run build",
"test": "jest",
"version-bump": "ts-node version-bump.ts"
},
"dependencies": {
"@types/oauth": "^0.9.6",
"axios": "^1.7.7",
"chalk": "^4.1.2",
"commander": "^9.4.1",
"inquirer": "^8.0.0",
"oauth-1.0a": "^2.2.6",
"readline-sync": "^1.4.10",
"semver": "^7.6.3"
},
"devDependencies": {
"@types/axios": "^0.9.36",
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.14",
"@types/readline-sync": "^1.4.8",
"@types/semver": "^7.5.8",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"ts-prune": "^0.10.3",
"typescript": "^4.6.2"
},
"author": "Ian Skelskey <[email protected]>",
"license": "MIT"
}