UNPKG

tiny-svg

Version:

A minimal toolbelt for builing fast SVG-based applications

61 lines (60 loc) 1.39 kB
{ "name": "tiny-svg", "version": "4.1.3", "description": "A minimal toolbelt for builing fast SVG-based applications", "type": "module", "scripts": { "all": "run-s lint test", "pretest": "run-s bundle", "bundle": "rollup -c --bundleConfigAsCjs", "dev": "npm test -- --auto-watch --no-single-run", "lint": "eslint .", "prepare": "run-s bundle", "test": "karma start karma.conf.cjs" }, "exports": { ".": { "import": "./dist/index.js", "types": "./dist/index.d.ts" }, "./package.json": "./package.json" }, "types": "dist/index.d.ts", "repository": { "type": "git", "url": "https://github.com/bpmn-io/tiny-svg" }, "keywords": [ "svg", "library", "geometry" ], "engines": { "node": ">= 16" }, "author": { "name": "Nico Rehwaldt", "url": "https://github.com/nikku" }, "license": "MIT", "sideEffects": false, "devDependencies": { "chai": "^4.4.1", "eslint": "^8.57.0", "eslint-plugin-bpmn-io": "^1.0.0", "karma": "^6.4.3", "karma-chai": "^0.1.0", "karma-chrome-launcher": "^3.2.0", "karma-firefox-launcher": "^2.1.3", "karma-mocha": "^2.0.1", "karma-webpack": "^5.0.1", "mocha": "^10.3.0", "npm-run-all": "^4.1.5", "puppeteer": "^22.4.0", "rollup": "^4.12.1", "webpack": "^5.90.3" }, "files": [ "dist" ] }