base64-to-file/package.json
2023-11-08 11:56:07 -07:00

36 lines
825 B
JSON

{
"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"
}
}