-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.67 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.67 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
{
"name": "@pierred/commity",
"version": "2.0.0",
"description": "Setup commits convention fast & simple.",
"keywords": [
"workflow",
"commits",
"commitizen",
"commit-conventions",
"commit",
"command-line-tool",
"commit-message",
"conventional-commits",
"commity",
"workflow-tool"
],
"main": "./dist/main.js",
"scripts": {
"prestart": "npm run build",
"start": "node ./dist/main.js",
"prebuild": "rimraf dist",
"build": "tsc",
"coverage": "c8 npm run test",
"test": "npm run build && node --loader=esmock --test ./test/**.test.js",
"lint": "eslint ./src/**/**.ts",
"lint:fix": "eslint ./src/**/**.ts --fix"
},
"author": "PierreDemailly",
"license": "ISC",
"dependencies": {
"@clinjs/clargs": "^1.0.2",
"@pierred/node-git": "^1.1.1",
"@topcli/prompts": "^1.0.0",
"ansi-styles": "^6.2.1",
"kleur": "^4.1.5",
"pupa": "^3.1.0"
},
"devDependencies": {
"@nodesecure/eslint-config": "^1.7.0",
"@types/node": "^20.2.1",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"all-contributors-cli": "^6.25.1",
"c8": "^7.13.0",
"eslint": "^8.41.0",
"esmock": "^2.2.3",
"rimraf": "^5.0.1",
"strip-ansi": "^7.0.1",
"typescript": "^5.0.4"
},
"bin": {
"commity": "./dist/main.js"
},
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/PierreDemailly/commity/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/PierreDemailly/commity"
},
"homepage": "https://github.com/PierreDemailly/commity#readme",
"engines": {
"node": ">=14.16.0"
},
"type": "module"
}