package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "lottie-web",
  3. "version": "5.13.0",
  4. "description": "After Effects plugin for exporting animations to SVG + JavaScript or canvas + JavaScript",
  5. "main": "./build/player/lottie.js",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://github.com/airbnb/lottie-web.git"
  9. },
  10. "sideEffects": false,
  11. "scripts": {
  12. "build": "npx eslint ./player/js/**/* && rollup -c && node tasks/build_worker",
  13. "build_test": "node tasks/build.js",
  14. "lint": "npx eslint ./player/js/**/*",
  15. "lint:fix": "npx eslint ./player/js/**/* --fix",
  16. "test:create": "node test/index.js",
  17. "test:compare": "node test/index.js -s compare"
  18. },
  19. "keywords": [
  20. "animation",
  21. "canvas",
  22. "svg",
  23. "after effects",
  24. "plugin",
  25. "export"
  26. ],
  27. "devDependencies": {
  28. "@babel/core": "^7.16.0",
  29. "@babel/plugin-transform-runtime": "^7.17.0",
  30. "@babel/preset-env": "^7.16.4",
  31. "@rollup/plugin-babel": "^5.3.0",
  32. "@rollup/plugin-node-resolve": "^13.0.6",
  33. "cheerio": "^1.0.0-rc.2",
  34. "command-line-args": "^5.2.1",
  35. "eslint": "^7.16.0",
  36. "eslint-config-airbnb-base": "^14.2.1",
  37. "eslint-plugin-import": "^2.22.1",
  38. "express": "^4.18.2",
  39. "pixelmatch": "^5.3.0",
  40. "pngjs": "^7.0.0",
  41. "puppeteer": "^20.5.0",
  42. "rollup": "^2.61.0",
  43. "rollup-plugin-terser": "^7.0.2",
  44. "uglify-js": "^3.4.9",
  45. "watch": "^1.0.2"
  46. },
  47. "types": "./index.d.ts",
  48. "license": "MIT"
  49. }