@code-bug/gifencoder
Version:
add images to a gif and return buffer, save to file
56 lines (55 loc) • 1.29 kB
JSON
{
"name": "@code-bug/gifencoder",
"version": "1.0.0",
"author": {
"name": "Code Bug",
"email": "code-bug@outlook.com"
},
"bugs": {
"url": "https://github.com/macmillanhighered/automation-gifencoder/issues"
},
"dependencies": {
"canvas": "^2.6.1",
"gifencoder": "^2.0.1"
},
"description": "add images to a gif and return buffer, save to file",
"homepage": "https://github.com/macmillanhighered/automation-gifencoder#readme",
"keywords": [
"gif",
"add",
"remove",
"buffer",
"file"
],
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/boilerplatejs/gifencoder.git"
},
"scripts": {
"test": "npm run test"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"husky": "4.2.5",
"lint-staged": "10.1.5",
"prettier": "^2.0.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"*.{json,yaml,yml,md,sh,groovy}": [
"prettier --write"
]
}
}