-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 2.12 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
{
"name": "@coveo/semantic-monorepo-tools",
"version": "2.6.2",
"description": "A library of helper functions to do SemVer2 compliant releases from Conventional Commits in monorepos",
"homepage": "https://github.com/coveo/semantic-monorepo-tools#readme",
"repository": {
"type": "git",
"url": "git@github.com:coveo/semantic-monorepo-tools.git"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc -b",
"test": "jest",
"prestart": "npm run build",
"start": "node --experimental-specifier-resolution=node dist",
"predebug": "npm run build",
"debug": "node --inspect-brk --experimental-specifier-resolution=node dist",
"eslint:check": "eslint .",
"prettier:check": "prettier --check .",
"eslint:fix": "eslint --fix .",
"prettier:fix": "prettier --write .",
"prepare": "husky install",
"pre-commit": "lint-staged"
},
"keywords": [
"monorepo",
"semantic-release",
"ci",
"conventional-commits",
"cd",
"semver"
],
"author": "Coveo",
"license": "Apache-2.0",
"devDependencies": {
"@actions/github": "6.0.0",
"@octokit/auth-app": "6.1.3",
"@types/conventional-changelog-writer": "4.0.10",
"@types/conventional-commits-parser": "5.0.1",
"@types/debug": "4.1.12",
"@types/git-raw-commits": "2.0.4",
"@types/jest": "29.5.14",
"@types/semver": "7.5.8",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"conventional-changelog-angular": "7.0.0",
"eslint": "8.57.1",
"husky": "9.1.7",
"jest": "29.7.0",
"lint-staged": "15.2.10",
"octokit": "3.2.1",
"prettier": "3.4.2",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.7.2",
"yaml": "^2.2.1"
},
"dependencies": {
"conventional-changelog-writer": "^7.0.0",
"conventional-commits-parser": "^5.0.0",
"debug": "^4.3.3",
"git-raw-commits": "^4.0.0",
"semver": "^7.3.7",
"tempfile": "^5.0.0"
},
"publishConfig": {
"access": "public"
}
}