UNPKG

union-find-ts

Version:
124 lines 3.14 kB
{ "name": "union-find-ts", "version": "1.0.9", "description": "An immutable Union-Find structure.", "main": "./lib/src/index.js", "files": [ "lib/**/*" ], "type": "module", "repository": { "type": "git", "url": "git+https://github.com/tylergannon/union-find-ts.git" }, "license": "MIT", "author": { "name": "Tyler Gannon", "email": "tylergannon@users.noreply.github.com", "url": "https://github.com/tylergannon" }, "engines": { "node": ">=12.0" }, "keywords": [ "typescript", "union-find" ], "bugs": { "url": "https://github.com/tylergannon/union-find-ts/issues" }, "homepage": "https://github.com/tylergannon/union-find-ts#readme", "devDependencies": { "@ryansonshine/commitizen": "^4.2.8", "@ryansonshine/cz-conventional-changelog": "^3.3.4", "@types/jest": "^28.1.1", "@types/jsdom": "^16.2.14", "@types/node": "^17.0.42", "@types/ramda": "^0.28.14", "@typescript-eslint/eslint-plugin": "^5.28.0", "@typescript-eslint/parser": "^5.28.0", "codecov": "^3.8.3", "conventional-changelog-conventionalcommits": "^5.0.0", "eslint": "^8.17.0", "eslint-config-prettier": "^8.3.0", "eslint-plugin-node": "^11.1.0", "eslint-plugin-prettier": "^4.0.0", "husky": "^8.0.1", "jest": "^28.1.1", "lint-staged": "^13.0.1", "node-notifier": "^10.0.1", "prettier": "^2.7.0", "semantic-release": "^19.0.2", "ts-jest": "^28.0.5", "ts-node": "^10.2.1", "typescript": "^4.2.4" }, "config": { "commitizen": { "path": "./node_modules/@ryansonshine/cz-conventional-changelog" } }, "lint-staged": { "*.ts": "eslint --cache --cache-location .eslintcache --fix" }, "release": { "branches": [ "main" ], "plugins": [ [ "@semantic-release/commit-analyzer", { "preset": "conventionalcommits", "releaseRules": [ { "type": "build", "scope": "deps", "release": "patch" } ] } ], [ "@semantic-release/release-notes-generator", { "preset": "conventionalcommits", "presetConfig": { "types": [ { "type": "feat", "section": "Features" }, { "type": "fix", "section": "Bug Fixes" }, { "type": "build", "section": "Dependencies and Other Build Updates", "hidden": false } ] } } ], "@semantic-release/npm", "@semantic-release/github" ] }, "dependencies": { "purify-ts": "^1.2.2", "ramda": "^0.28.0" }, "scripts": { "build": "tsc", "clean": "rm -rf ./lib/", "cm": "cz", "coverage": "codecov", "lint": "eslint ./src/ --fix", "semantic-release": "semantic-release", "test:watch": "jest --watch --notify --notifyMode change", "test": "jest --coverage", "typecheck": "tsc --noEmit" } }