package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "lottie-web",
  3. "version": "5.12.2",
  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. "scripts": {
  11. "build": "npx eslint ./player/js/**/* && rollup -c && node tasks/build_worker",
  12. "build_test": "node tasks/build.js",
  13. "lint": "npx eslint ./player/js/**/*",
  14. "lint:fix": "npx eslint ./player/js/**/* --fix",
  15. "test:create": "node test/index.js",
  16. "test:compare": "node test/index.js -s compare"
  17. },
  18. "keywords": [
  19. "animation",
  20. "canvas",
  21. "svg",
  22. "after effects",
  23. "plugin",
  24. "export"
  25. ],
  26. "devDependencies": {
  27. "@babel/core": "^7.16.0",
  28. "@babel/plugin-transform-runtime": "^7.17.0",
  29. "@babel/preset-env": "^7.16.4",
  30. "@rollup/plugin-babel": "^5.3.0",
  31. "@rollup/plugin-node-resolve": "^13.0.6",
  32. "cheerio": "^1.0.0-rc.2",
  33. "command-line-args": "^5.2.1",
  34. "eslint": "^7.16.0",
  35. "eslint-config-airbnb-base": "^14.2.1",
  36. "eslint-plugin-import": "^2.22.1",
  37. "express": "^4.18.2",
  38. "pixelmatch": "^5.3.0",
  39. "pngjs": "^7.0.0",
  40. "puppeteer": "^20.5.0",
  41. "rollup": "^2.61.0",
  42. "rollup-plugin-terser": "^7.0.2",
  43. "uglify-js": "^3.4.9",
  44. "watch": "^1.0.2"
  45. },
  46. "types": "./index.d.ts",
  47. "license": "MIT"
  48. }