-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.23 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.23 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
{
"private": true,
"name": "socket-github-action",
"version": "0.0.0-semantically-released",
"description": "GitHub Action for Socket.dev",
"type": "module",
"main": "src/main.js",
"license": "MIT",
"author": {
"name": "Socket Inc",
"email": "eng@socket.dev",
"url": "https://socket.dev"
},
"scripts": {
"build": "npm run build:main && npm run build:post",
"build:main": "rollup --config rollup.config.js src/main.js --file dist/main.js",
"build:post": "rollup --config rollup.config.js src/post.js --file dist/post.js"
},
"keywords": [
"github",
"action",
"socket",
"security"
],
"engines": {
"node": ">=24"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.1",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.2",
"packageurl-js": "^2.0.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"conventional-changelog-conventionalcommits": "^9.1.0",
"rollup": "^4.52.2",
"semantic-release": "^24.2.9"
}
}