UNPKG

algopat

Version:

Utility library for implementing common design patterns and algorithms

56 lines 1.62 kB
{ "name": "algopat", "version": "1.0.4", "description": "Utility library for implementing common design patterns and algorithms", "main": "dist/index.js", "types": "dist/index.d.ts", "homepage": "https://github.com/bbgrabbag/design-patterns", "repository": { "type": "git", "url": "git+https://github.com/bbgrabbag/design-patterns.git" }, "scripts": { "build": "tsc", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "clean": "rm -rf dist", "prepublishOnly": "npm run clean && npm run build", "lint": "eslint src/**/*.ts", "lint:fix": "eslint src/**/*.ts --fix", "format": "prettier --write src/**/*.ts", "format:check": "prettier --check src/**/*.ts", "prepare": "husky", "lint-staged": "lint-staged" }, "keywords": [ "design-patterns", "typescript", "node" ], "author": "Ben Turner", "license": "MIT", "devDependencies": { "@types/jest": "^29.5.8", "@types/node": "^20.8.10", "@typescript-eslint/eslint-plugin": "^6.9.1", "@typescript-eslint/parser": "^6.9.1", "eslint": "^8.52.0", "husky": "^9.1.7", "jest": "^29.7.0", "lint-staged": "^15.5.2", "prettier": "^3.0.3", "ts-jest": "^29.1.1", "typescript": "^5.2.2" }, "files": [ "dist", "README.md" ], "lint-staged": { "src/**/*.ts": [ "prettier --write", "eslint --fix" ] } }