UNPKG

@d1g1tal/collections

Version:
92 lines 2.13 kB
{ "name": "@d1g1tal/collections", "version": "2.0.3", "author": "Jason DiMeo", "license": "ISC", "description": "JavaScript Collections ES Modules", "repository": { "type": "git", "url": "git+https://github.com/D1g1talEntr0py/collections.git" }, "bugs": { "url": "https://github.com/D1g1talEntr0py/collections/issues" }, "keywords": [ "Collections", "ESModules" ], "type": "module", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" }, "./src": { "types": "./dist/index.d.ts", "import": "./src/index.ts" } }, "publishConfig": { "access": "public" }, "files": [ "/src", "/dist" ], "homepage": "https://github.com/D1g1talEntr0py/collections#readme", "devDependencies": { "@eslint/compat": "^1.3.1", "@eslint/js": "^9.31.0", "@types/benchmark": "^2.1.5", "@types/node": "^24.0.15", "@typescript-eslint/eslint-plugin": "8.37.0", "@typescript-eslint/parser": "8.37.0", "@vitest/coverage-v8": "^3.2.4", "benchmark": "^2.1.4", "eslint": "^9.31.0", "eslint-plugin-compat": "^6.0.2", "eslint-plugin-jsdoc": "^51.4.1", "globals": "^16.3.0", "microtime": "^3.1.1", "typescript": "^5.8.3", "typescript-eslint": "8.37.0", "vitest": "^3.2.4" }, "peerDependencies": { "typescript": "^5.5.2" }, "peerDependenciesMeta": { "typescript": { "optional": true } }, "browserslist": [ "defaults", "not ios_saf < 15", "not op_mini all" ], "engines": { "node": ">=20.16.0" }, "jest": { "verbose": true, "transform": {}, "coverageDirectory": "./tests/coverage/", "coveragePathIgnorePatterns": [ "/node_modules/" ], "collectCoverage": true, "collectCoverageFrom": [ "src/**/*.js" ] }, "scripts": { "build": "tsbuild", "build:watch": "tsbuild --watch", "type-check": "tsbuild --typeCheck", "lint": "eslint", "test": "vitest run --coverage", "test:watch": "vitest", "prepublish": "pnpm lint && pnpm test && pnpm build" } }