collectio-hashset
Version:
Implementation of Set with a configurable equality algorithm
49 lines (48 loc) • 1.06 kB
JSON
{
"name": "collectio-hashset",
"version": "1.0.4",
"description": "Implementation of Set with a configurable equality algorithm",
"engines": {
"node": ">=8"
},
"main": "./src/index.js",
"files": [
"src",
"README.md",
"LICENSE"
],
"scripts": {
"test": "jest --verbose",
"coverageCalculation": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/litichevskiydv/collectio-hashset.git"
},
"keywords": [
"Collections",
"Set",
"Hashing",
"HashSet"
],
"author": "Dmitriy Litichevskiy",
"license": "MIT",
"bugs": {
"url": "https://github.com/litichevskiydv/collectio-hashset/issues"
},
"homepage": "https://github.com/litichevskiydv/collectio-hashset#readme",
"devDependencies": {
"@types/jest": "^27.4.1",
"jest": "^27.5.1",
"jest-extended": "^2.0.0"
},
"jest": {
"testEnvironment": "node",
"setupFilesAfterEnv": [
"jest-extended/all"
],
"coveragePathIgnorePatterns": [
"/node_modules/"
]
}
}