{ "name": "@svgdotjs/svg.js", "version": "3.0.0", "description": "A lightweight library for manipulating and animating SVG.", "url": "https://svgdotjs.github.io/", "homepage": "https://svgdotjs.github.io/", "keywords": [ "svg", "vector", "graphics", "animation" ], "author": "Wout Fierens ", "main": "dist/svg.node.js", "unpkg": "dist/svg.min.js", "jsdelivr": "dist/svg.min.js", "browser": "dist/svg.min.js", "module": "src/main.js", "maintainers": [ { "name": "Wout Fierens", "email": "wout@mick-wout.com", "web": "https://svgdotjs.github.io/" }, { "name": "Alex Ewerlöf", "email": "alex@userpixel.com", "web": "http://www.ewerlof.name" }, { "name": "Ulrich-Matthias Schäfer", "email": "ulima.ums@googlemail.com" }, { "name": "Jon Ege Ronnenberg", "email": "jon@svgjs.com", "url": "https://keybase.io/dotnetcarpenter" } ], "licenses": [ { "type": "MIT", "url": "http://www.opensource.org/licenses/mit-license.php" } ], "repository": { "type": "git", "url": "https://github.com/svgdotjs/svg.js.git" }, "github": "https://github.com/svgdotjs/svg.js", "license": "MIT", "typings": "./svg.js.d.ts", "scripts": { "build": "npm run fix && npm run rollup", "build:polyfills": "npx rollup -c .config/rollup.polyfills.js", "build:tests": "npx rollup -c .config/rollup.tests.js", "fix": "npx eslint ./src --fix", "lint": "eslint ./src", "rollup": "rollup -c .config/rollup.config.js", "server": "npx http-server ./ -d", "test": "npx karma start .config/karma.conf.js", "test:ci": "karma start .config/karma.conf.saucelabs.js", "test:svgdom": "node -r esm ./spec/runSVGDomTest.js || true", "test:es6": "npx karma start .config/karma.es6.js --single-run", "bower:copy": "cd ../svg.js-bower && git pull && cp ../svg.js/LICENSE.txt ../svg.js/README.md ../svg.js/dist/svg.js ../svg.js/dist/svg.min.js ../svg.js/dist/polyfills.js ../svg.js/dist/polyfillsIE.js . && cd ../svg.js", "bower:tag": "cd ../svg.js-bower git add -- LICENSE README.md svg.js svg.min.js && git commit -m \"${npm_package_version}\" && git tag -am \"${npm_package_version}\" v${npm_package_version} && git push && git push --tags && cd ../svg.js", "zip": "zip -j dist/svg.js.zip -- LICENSE.txt README.md CHANGELOG.md dist/svg.js dist/svg.min.js dist/polyfills.js dist/polyfillsIE.js", "prepublishOnly": "npm run build && npm run build:polyfills && npm test", "postpublish": "git push && git push --tags && npm run bower:copy && npm run bower:tag && npm run zip" }, "devDependencies": { "@babel/core": "^7.1.2", "@babel/plugin-external-helpers": "^7.0.0", "@babel/plugin-transform-runtime": "^7.1.0", "@babel/polyfill": "^7.0.0", "@babel/preset-env": "^7.1.0", "@babel/runtime": "^7.1.5", "@babel/runtime-corejs2": "^7.1.5", "@target/custom-event-polyfill": "github:Adobe-Marketing-Cloud/custom-event-polyfill", "babel-eslint": "^10.0.1", "core-js": "^2.5.7", "coveralls": "^3.0.2", "eslint": "^5.9.0", "eslint-config-standard": "^12.0.0", "eslint-plugin-import": "^2.14.0", "eslint-plugin-node": "^8.0.0", "eslint-plugin-promise": "^4.0.1", "eslint-plugin-standard": "^4.0.0", "esm": "^3.0.84", "http-server": "^0.11.1", "jasmine": "^3.3.0", "jasmine-core": "^3.3.0", "karma": "^3.1.1", "karma-chrome-launcher": "^2.2.0", "karma-coverage": "^1.1.2", "karma-firefox-launcher": "^1.1.0", "karma-jasmine": "^2.0.0", "karma-sauce-launcher": "^1.2.0", "rollup": "^0.67.0", "rollup-plugin-babel": "^4.0.3", "rollup-plugin-commonjs": "^9.2.0", "rollup-plugin-filesize": "^5.0.1", "rollup-plugin-multi-entry": "^2.0.2", "rollup-plugin-node-resolve": "^3.4.0", "rollup-plugin-terser": "^3.0.0", "rollup-plugin-uglify": "^6.0.0", "svgdom": "github:svgdotjs/svgdom" }, "browserslist": [ "last 1 version", "> 0.25%", "not maintained node versions", "not dead" ] }