UNPKG

venn-helper

Version:

Area Proportional Venn and Euler Diagrams

71 lines (70 loc) 1.94 kB
{ "name": "venn-helper", "version": "2.0.0", "description": "Area Proportional Venn and Euler Diagrams", "author": "Ben Frederickson <ben@benfrederickson.com> (http:/www.benfrederickson.com)", "url": "https://github.com/benfred/venn.js/issues", "type": "module", "exports": { "./packake.json": "./package.json", ".": { "import": "./dist/index.js" } }, "devDependencies": { "@arethetypeswrong/cli": "^0.17.4", "@changesets/cli": "^2.28.1", "@vitest/coverage-v8": "^3.0.7", "jshint": "^2.8.0", "rollup": "^0.59.4", "rollup-plugin-commonjs": "^9.1.3", "rollup-plugin-node-resolve": "^3.3.0", "tape": "4", "tsup": "^8.4.0", "typescript": "^5.8.2", "uglify-js": "3", "vitest": "^3.0.7" }, "main": "dist/index.js", "jsnext:main": "index", "files": [ "dist" ], "directories": { "example": "examples", "test": "tests" }, "repository": { "type": "git", "url": "git+https://github.com/benfred/venn.js.git" }, "keywords": [ "Venn", "Euler" ], "license": "MIT", "bugs": { "url": "https://github.com/benfred/venn.js/issues" }, "homepage": "https://github.com/benfred/venn.js", "jshintConfig": { "esnext": true }, "scripts": { "build": "tsup", "test": "vitest", "lint": "tsc", "local-release": "changeset version && changeset publish", "ci": "npm run build && npm run lint && npm run check-exports && npm run lint", "pretest": "rm -rf build && rollup -c && cp build/venn.js .", "test:2": "jshint src/*.js && tape 'tests/**/*test.js'", "prepublish": "npm run test && uglifyjs build/venn.js -c -m -o build/venn.min.js", "check-exports": "attw --pack .", "postpublish": "zip -j build/venn.zip -- LICENSE README.md build/venn.js build/venn.min.js" }, "dependencies": { "d3-selection": "^1.0.2", "d3-transition": "^1.0.1", "fmin": "0.0.2" } }