-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
42 lines (42 loc) · 951 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
41
42
{
"name": "@bagbyte/use-private-action",
"version": "0.0.2",
"private": true,
"description": "This action allow the use of GitHub private actions",
"main": "dist/main.js",
"scripts": {
"build": "tsc",
"test": "jest",
"prepublishOnly": "npm run build && npm prune --prod && npm version patch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bagbyte/use-private-action.git"
},
"keywords": [
"github",
"actions",
"private"
],
"author": "bagbyte",
"license": "MIT",
"files": [
"dist/**/*",
"node_modules/**/*",
"action.yml"
],
"dependencies": {
"@actions/core": "^1.2.0",
"@actions/exec": "^1.0.1",
"@actions/io": "^1.0.1",
"js-yaml": "^3.13.1"
},
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/node": "^12.0.4",
"jest": "^24.8.0",
"jest-circus": "^24.7.1",
"ts-jest": "^24.0.2",
"typescript": "^3.5.1"
}
}