-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.43 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.43 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "conventional-versioning",
"version": "0.2.2",
"description": "Versioning manager for conventional commits.",
"keywords": [
"conventional",
"commits",
"version",
"versioning",
"release",
"publish"
],
"repository": {
"type": "git",
"url": "https://github.com/tscpp/conventional-versioning"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/tscpp"
},
"license": "MIT",
"author": {
"name": "Elias Skogevall",
"email": "elias.skogevall@gmail.com",
"url": "https://github.com/tscpp"
},
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"conventional-versioning": "dist/cli/main.js",
"conver": "dist/cli/main.js"
},
"files": [
"./dist/",
"./schema.json"
],
"scripts": {
"build": "tsc -p tsconfig.lib.json",
"conver": "node ./dist/cli/main.js",
"format": "prettier --write .",
"lint": "eslint src e2e",
"prepare": "husky",
"release": "node ./scripts/release.js",
"test": "node --no-warnings --experimental-vm-modules ./node_modules/jest/bin/jest.js src",
"e2e": "node --no-warnings --experimental-vm-modules ./node_modules/jest/bin/jest.js e2e",
"version": "node ./dist/cli/main.js version"
},
"dependencies": {
"@eliassko/logger": "^1.1.0",
"@manypkg/get-packages": "^2.2.2",
"chalk": "^5.6.2",
"conventional-commits-parser": "^6.2.1",
"detect-indent": "^7.0.2",
"detect-newline": "^4.0.1",
"enquirer": "^2.4.1",
"escape-string-regexp": "^5.0.0",
"execa": "^9.6.1",
"is-ci": "^4.1.0",
"jsonc-parser": "^3.3.1",
"minimatch": "^10.1.1",
"semver": "^7.7.3",
"slash": "^5.1.0",
"yargs": "^18.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@jest/globals": "^30.2.0",
"@swc/core": "^1.15.3",
"@swc/jest": "^0.2.39",
"@tsconfig/node20": "^20.1.8",
"@tsconfig/strictest": "^2.0.8",
"@types/is-ci": "^3.0.4",
"@types/node": "^24.10.1",
"@types/semver": "^7.7.1",
"@types/yargs": "^17.0.35",
"eslint": "^9.39.1",
"globals": "^16.5.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"new-github-release-url": "^2.0.0",
"open": "^11.0.0",
"prettier": "^3.7.4",
"pretty-quick": "^4.2.2",
"ts-jest-resolver": "^2.0.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.1"
},
"publishConfig": {},
"overrides": {
"eslint": "$eslint"
}
}