-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.32 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
{
"name": "version-generate",
"version": "1.4.1",
"description": "A GitHub action for reading, bumping, generating, formatting applications versions in release pipelines",
"main": "index.js",
"scripts": {
"test": "jest --notify",
"lint": "eslint \"**/*.js\" --ignore-pattern node_modules/ --ignore-pattern build/",
"build": "ncc build src/index.js -o build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HardNorth/github-version-generate.git"
},
"keywords": [
"GitHub",
"action",
"version",
"versions",
"generation",
"generate",
"bump",
"prepare"
],
"author": "Vadzim Hushchanskou",
"license": "Apache-2.0",
"homepage": "https://github.com/HardNorth/github-version-generate",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"escape-html": "^1.0.3",
"moment": "^2.30.1",
"xregexp": "^4.4.1"
},
"bugs": {
"url": "https://github.com/HardNorth/github-version-generate/issues"
},
"devDependencies": {
"node-notifier": "^10.0.1",
"jest": "^29.7.0",
"jest-each": "^29.7.0",
"@jest/globals": "^29.7.0",
"@vercel/ncc": "0.38.1",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.2"
},
"engines": {
"node": "^20"
}
}