-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.83 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
{
"name": "commitizard",
"version": "0.0.1",
"description": "Commitizard is a powerful command-line tool designed to simplify the process of generating high-quality commit messages",
"bin": {
"commitizard": "dist/bundle.js"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "npm run clean && webpack && chmod +x dist/bundle.js",
"clean": "rm -rf dist",
"start": "npm run build && node dist/bundle.js",
"dev": "npm run build && nodemon dist/bundle.js",
"test": "jest",
"type-check": "tsc --noEmit",
"lint": "eslint --ext .ts src",
"coverage": "jest --coverage && coveralls < coverage/lcov.info",
"release": "npm run build && release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lokicoule/commitizard.git"
},
"keywords": [
"commit",
"conventional",
"tdd",
"red-green-refactor",
"commitizard",
"commit-wizard"
],
"author": "Loik F.",
"license": "MIT",
"bugs": {
"url": "https://github.com/Lokicoule/commitizard/issues"
},
"homepage": "https://github.com/Lokicoule/commitizard#readme",
"devDependencies": {
"@clack/prompts": "^0.7.0",
"@types/jest": "^29.4.0",
"@types/mock-fs": "^4.13.1",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"coveralls": "^3.1.1",
"eslint": "^8.36.0",
"jest": "^29.5.0",
"mock-fs": "^5.2.0",
"nodemon": "^3.0.0",
"picocolors": "^1.0.0",
"release-it": "^17.0.0",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.2",
"tsconfig-paths-webpack-plugin": "^4.0.1",
"typescript": "^5.0.2",
"webpack": "^5.76.3",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"commandzen": "^0.3.1"
}
}