package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "@rateyo/jquery",
  3. "version": "3.0.0-alpha.2",
  4. "description": "Jquery implementation if rateyo",
  5. "main": "index.js",
  6. "scripts": {
  7. "build": "rollup --config config/rollup.config.js",
  8. "clean": "rm -rf lib/",
  9. "prepublishOnly": "npm run clean && npm run build"
  10. },
  11. "repository": {
  12. "type": "git",
  13. "url": "git://github.com/prrashi/rateYo.git"
  14. },
  15. "author": "prashanth pamidi (https://github.com/prrashi)",
  16. "license": "MIT",
  17. "bugs": {
  18. "url": "https://github.com/prrashi/rateYo/issues"
  19. },
  20. "keywords": [
  21. "rating",
  22. "star",
  23. "jquery",
  24. "javascript",
  25. "plugin"
  26. ],
  27. "dependencies": {
  28. "rateyo": "^3.0.0-alpha.1"
  29. },
  30. "peerDependencies": {
  31. "jquery": "^3.0.0"
  32. },
  33. "devDependencies": {
  34. "@babel/core": "^7.10.2",
  35. "@babel/preset-env": "^7.10.2",
  36. "@rollup/plugin-babel": "^5.0.3",
  37. "@rollup/plugin-node-resolve": "^8.0.1",
  38. "cssnano": "^4.1.10",
  39. "jquery": "^3.5.1",
  40. "matchdep": "^2.0.0",
  41. "postcss-scss": "^2.1.1",
  42. "rollup": "^2.14.0",
  43. "rollup-plugin-postcss": "^3.1.2",
  44. "rollup-plugin-terser": "^6.1.0",
  45. "sass": "^1.26.8"
  46. },
  47. "homepage": "http://rateyo.fundoocode.ninja/jquery",
  48. "files": [
  49. "lib"
  50. ],
  51. "engines": {
  52. "node": ">=10.16.2",
  53. "npm": ">=4.0.0"
  54. }
  55. }