generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.95 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
{
"name": "get-next-version-action",
"version": "1.4.8",
"description": "A GitHub Action for getting the proposed next version of a project for release based on conventional commits",
"keywords": [
"GitHub",
"Actions",
"JavaScript"
],
"homepage": "https://github.com/ugrc/get-next-version-action#readme",
"bugs": {
"url": "https://github.com/ugrc/get-next-version-action/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ugrc/get-next-version-action.git"
},
"license": "MIT",
"author": "ugrc-developers@utah.gov",
"type": "module",
"main": "index.js",
"scripts": {
"all": "npm run lint && npm run prepare && npm run test",
"format": "prettier . --write",
"lint": "eslint . && tsc --noEmit",
"prepare": "bash support/setup-dist.sh && esbuild src/index.ts --bundle --platform=node --format=esm --target=es2022 --inject:./support/cjs-shim.ts --outfile=dist/index.js && cpy \"./node_modules/conventional-changelog-angular/src/templates/**\" ./dist/templates",
"test": "vitest --reporter verbose --coverage"
},
"prettier": {
"plugins": [
"prettier-plugin-organize-imports",
"prettier-plugin-packagejson"
],
"printWidth": 120,
"singleQuote": true
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@vitest/coverage-v8": "^2.1.8",
"conventional-changelog-angular": "^8.0.0",
"conventional-recommended-bump": "^10.0.0",
"semver": "^7.6.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@types/node": "^22.10.5",
"cpy-cli": "^5.0.0",
"esbuild": "^0.24.2",
"eslint": "^9.17.0",
"eslint-config-plugin": "^1.0.11",
"eslint-plugin-pretty": "^0.0.0",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-packagejson": "^2.5.6",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}