package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "tiny-svg",
  3. "version": "3.0.1",
  4. "description": "A minimal toolbelt for builing fast SVG-based applications",
  5. "main": "dist/index.cjs.js",
  6. "module": "dist/index.esm.js",
  7. "types": "dist/index.d.ts",
  8. "scripts": {
  9. "all": "run-s lint test distro",
  10. "bundle": "rollup -c",
  11. "distro": "run-s bundle test:integration",
  12. "dev": "npm test -- --auto-watch --no-single-run",
  13. "lint": "eslint .",
  14. "prepublishOnly": "run-s distro",
  15. "test": "karma start",
  16. "test:integration": "karma start test/integration/karma.config.js"
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "https://github.com/bpmn-io/tiny-svg"
  21. },
  22. "keywords": [
  23. "svg",
  24. "library",
  25. "geometry"
  26. ],
  27. "author": {
  28. "name": "Nico Rehwaldt",
  29. "url": "https://github.com/nikku"
  30. },
  31. "license": "MIT",
  32. "sideEffects": false,
  33. "devDependencies": {
  34. "chai": "^4.3.6",
  35. "eslint": "^8.23.1",
  36. "eslint-plugin-bpmn-io": "^0.15.1",
  37. "karma": "^6.4.0",
  38. "karma-chai": "^0.1.0",
  39. "karma-chrome-launcher": "^3.1.1",
  40. "karma-firefox-launcher": "^2.1.2",
  41. "karma-mocha": "^2.0.1",
  42. "karma-webpack": "^5.0.0",
  43. "mocha": "^10.0.0",
  44. "npm-run-all": "^4.1.5",
  45. "puppeteer": "^17.1.3",
  46. "rollup": "^2.79.0",
  47. "rollup-plugin-terser": "^7.0.2",
  48. "webpack": "^5.74.0"
  49. },
  50. "files": [
  51. "dist"
  52. ]
  53. }