generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
36 lines (36 loc) · 825 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
{
"name": "base64-to-file",
"version": "1.2.4",
"description": "base64 encoded string to a file",
"main": "index.js",
"scripts": {
"lint": "eslint index.js",
"package": "ncc build index.js -o dist",
"test": "eslint index.js && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/timheuer/base64-to-file.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript",
"base64"
],
"author": "Tim Heuer",
"license": "MIT",
"bugs": {
"url": "https://github.com/timheuer/base64-to-file/issues"
},
"homepage": "https://github.com/timheuer/base64-to-file#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"fs-extra": "^9.0.1"
},
"devDependencies": {
"@vercel/ncc": "^0.34.0",
"eslint": "^6.3.0",
"jest": "^24.9.0"
}
}