-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1012 Bytes
/
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
{
"name": "game-semver-action",
"version": "1.0.0",
"description": "",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"package": "ncc build --source-map --license licenses.txt",
"release": "npm run build && npm run package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bioblaze/game-semver-action.git"
},
"keywords": [
"actions",
"versioning",
"semver"
],
"author": "Randolph William Aarseth II <randolph@divine.games>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Bioblaze/game-semver-action/issues"
},
"homepage": "https://github.com/Bioblaze/game-semver-action#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"semver": "^7.6.0"
},
"devDependencies": {
"@types/node": "^18.11.9",
"@types/semver": "^7.3.13",
"@vercel/ncc": "^0.34.0",
"js-yaml": "^4.1.0",
"prettier": "2.7.1",
"typescript": "^4.9.3",
"undici": "^5.0.0"
}
}