mirror of
https://github.com/timheuer/base64-to-file
synced 2025-06-29 16:22:53 +02:00
35 lines
797 B
JSON
35 lines
797 B
JSON
{
|
|
"name": "base64-to-file",
|
|
"version": "1.0.0",
|
|
"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.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@zeit/ncc": "^0.20.5",
|
|
"eslint": "^6.3.0",
|
|
"jest": "^24.9.0"
|
|
}
|
|
}
|