-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 748 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 748 Bytes
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
{
"name": "unityautomatedsemver",
"version": "2.0.0",
"description": "Github Action to increment relevant version numbers in a project based on Github repository commits.",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"compile": "ncc build src/index.js --license licenses.txt"
},
"keywords": [
"unity",
"semver"
],
"author": {
"name": "AlexStormwood",
"email": "alex@bigfootds.com",
"url": "https://alexstormwood.com"
},
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@actions/glob": "^0.4.0",
"@bigfootds/unity-semver-updater": "^0.0.5"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"jest": "^29.7.0"
}
}