package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "raphael",
  3. "version": "2.3.0",
  4. "description": "JavaScript Vector Library",
  5. "main": "raphael.min.js",
  6. "author": {
  7. "name": "Dmitry Baranovskiy"
  8. },
  9. "contributors": [
  10. {
  11. "name": "Tomas Alabes",
  12. "url": "https://github.com/tomasAlabes"
  13. }
  14. ],
  15. "dependencies": {
  16. "eve-raphael": "0.5.0"
  17. },
  18. "devDependencies": {
  19. "qunitjs": "^2.4.1",
  20. "webpack": "4.42.0",
  21. "webpack-cli": "3.3.11"
  22. },
  23. "scripts": {
  24. "start": "yarn build-all",
  25. "dev": "webpack -d",
  26. "build-src": "webpack -d --devtool none",
  27. "build-no-deps": "webpack --env.noDeps -d --devtool none --output-filename raphael.no-deps.js",
  28. "build-no-deps-min": "webpack --env.noDeps -p --output-filename raphael.no-deps.min.js",
  29. "build-prod": "webpack -p --output-filename raphael.min.js",
  30. "build-all": "yarn build-src && yarn build-no-deps && yarn build-no-deps-min && yarn build-prod",
  31. "test": "echo \"Open dev/test/index.html with your browser\" && exit 1",
  32. "prepublishOnly": "yarn build-all"
  33. },
  34. "repository": {
  35. "type": "git",
  36. "url": "git://github.com/DmitryBaranovskiy/raphael.git"
  37. },
  38. "bugs": {
  39. "url": "https://github.com/DmitryBaranovskiy/raphael/issues"
  40. },
  41. "keywords": [
  42. "svg",
  43. "vml",
  44. "javascript"
  45. ],
  46. "homepage": "http://dmitrybaranovskiy.github.io/raphael/",
  47. "license": "MIT"
  48. }