animateme
Version:
Animate DOM elements when they enter the viewport
49 lines (48 loc) • 1.62 kB
JSON
{
"name": "animateme",
"version": "2.4.2",
"description": "Animate DOM elements when they enter the viewport",
"keywords": [
"Animation",
"Animations",
"JS Animation",
"CSS Animation",
"Scroll Animation",
"Custom Animation"
],
"homepage": "https://animate-me.atanas.info",
"bugs": {
"url": "https://github.com/scriptex/AnimateMe/issues",
"email": "hi@atanas.info"
},
"license": "MIT",
"author": "Atanas Atanasov <hi@atanas.info> (https://atanas.info)",
"funding": "https://github.com/sponsors/scriptex",
"main": "dist/animate.me.min.js",
"style": "dist/animate.me.css",
"types": "dist/animate.me.d.ts",
"repository": {
"type": "git",
"url": "github:scriptex/AnimateMe"
},
"scripts": {
"build": "tsc --skipLibCheck",
"minify": "jsmin -o dist/animate.me.min.js dist/animate.me.js",
"prod": "yarn build && yarn minify && yarn copy",
"release-minor": "release-it minor -n --npm.skipChecks --no-git.requireUpstream && yarn changelog-local",
"release-patch": "release-it patch -n --npm.skipChecks --no-git.requireUpstream && yarn changelog-local",
"release-major": "release-it major -n --npm.skipChecks --no-git.requireUpstream && yarn changelog-local",
"changelog-local": "npx auto-changelog",
"copy": "cp src/animate.me.css dist/animate.me.css",
"copy:js": "cp dist/animate.me.js demo/animate.me.js",
"copy:css": "cp dist/animate.me.css demo/animate.me.css",
"copy:demo": "yarn copy:js && yarn copy:css",
"deploy": "yarn prod && yarn copy:demo"
},
"dependencies": {},
"devDependencies": {
"jsmin": "1.0.1",
"release-it": "15.5.0",
"typescript": "4.8.4"
}
}