-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.46 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
92
93
94
{
"name": "conventional-versioning",
"version": "0.2.1",
"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": "[email protected]",
"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.0.2",
"@manypkg/get-packages": "^2.2.1",
"conventional-commits-parser": "^6.0.0",
"detect-indent": "^7.0.1",
"detect-newline": "^4.0.1",
"enquirer": "^2.4.1",
"escape-string-regexp": "^5.0.0",
"execa": "^9.2.0",
"is-ci": "^3.0.1",
"jsonc-parser": "^3.2.1",
"minimatch": "^9.0.4",
"semver": "^7.6.2",
"slash": "^5.1.0"
},
"devDependencies": {
"@eslint/js": "^9.5.0",
"@jest/globals": "^29.7.0",
"@swc/core": "^1.6.3",
"@swc/jest": "^0.2.36",
"@tsconfig/node20": "^20.1.4",
"@tsconfig/strictest": "^2.0.5",
"@types/is-ci": "^3.0.4",
"@types/node": "^20.14.2",
"@types/semver": "^7.5.8",
"@types/yargs": "^17.0.32",
"chalk": "^5.3.0",
"cross-env": "^7.0.3",
"eslint": "^9.5.0",
"globals": "^15.5.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"new-github-release-url": "^2.0.0",
"open": "^10.1.0",
"prettier": "^3.3.2",
"pretty-quick": "^4.0.0",
"ts-jest-resolver": "^2.0.1",
"typescript": "^5.4.5",
"typescript-eslint": "^7.13.0",
"yargs": "^17.7.2"
},
"publishConfig": {},
"overrides": {
"eslint": "$eslint"
}
}