-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.55 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
{
"name": "tag-version-commit",
"version": "1.7.0",
"private": true,
"description": "GitHub action for tagging commits whose title matches a version regex",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"pack": "ncc build",
"test": "jest",
"test-coverage": "jest --coverage",
"all": "npm run build && npm run format-check && npm run lint && npm run pack && npm run test-coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/christophebedard/tag-version-commit.git"
},
"keywords": [
"github",
"actions",
"git",
"tag",
"version"
],
"author": "Christophe Bedard",
"license": "MIT",
"bugs": {
"url": "https://github.com/christophebedard/tag-version-commit/issues"
},
"homepage": "https://github.com/christophebedard/tag-version-commit#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.8",
"@types/node": "^16.7.11",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.0.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.52.0",
"eslint-plugin-github": "^4.10.1",
"eslint-plugin-jest": "^27.6.0",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"js-yaml": "^4.1.0",
"nock": "^13.3.6",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}