convert-base64-to-image
Version:
This is a node package that helps you to convert base64 string created by javascript file reader to image downloadable file
49 lines (48 loc) • 1.33 kB
JSON
{
"name": "convert-base64-to-image",
"description": "This is a node package that helps you to convert base64 string created by javascript file reader to image downloadable file",
"maintainers": [
{
"name": "Patrick",
"email": "patrickckabwe@gmail.com"
}
],
"version": "0.0.16",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": {
"name": "Patrick",
"email": "patrickckabwe@gmail.com",
"url": "https://www.patrickkabwe.com"
},
"keywords": [
"base64",
"convertBase64URlToImage"
],
"scripts": {
"start": "node index.ts",
"dev": "nodemon index.ts",
"build": "npx tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm run format && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"git:push": "git add -A && git commit -m 'add create dir' && git push"
},
"files": [
"lib/**/*"
],
"devDependencies": {
"@types/node": "^17.0.8",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"ts-node": "^10.4.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.5.4"
}
}