UNPKG

@quinck/collections

Version:

Allows extra operations on JavaScript collections: Array, Map and Set.

55 lines (54 loc) 1.72 kB
{ "name": "@quinck/collections", "version": "0.4.2", "description": "Allows extra operations on JavaScript collections: Array, Map and Set.", "main": "lib/index.js", "types": "lib/index.d.ts", "scripts": { "lint": "eslint src/ test/", "lint:fix": "eslint src/ test/ --fix", "build": "tsc", "test": "mocha", "test:junitReporter": "mocha --reporter mocha-junit-reporter", "test:jsonReporter": "mocha --reporter json > test-results.json", "prepare": "npm run build", "prepublishOnly": "npm test && npm run lint", "preversion": "npm run lint", "version": "git add -A src", "postversion": "git push && git push --tags" }, "repository": { "type": "git", "url": "https://bitbucket.org/Quinck/collections.git" }, "keywords": [ "Collection", "Array", "Set", "Map" ], "author": "Quinck s.r.l.", "license": "ISC", "homepage": "https://bitbucket.org/Quinck/collections#readme", "devDependencies": { "@types/chai": "^4.3.3", "@types/chai-as-promised": "^7.1.5", "@types/mocha": "^10.0.0", "@types/node": "^18.19.26", "@typescript-eslint/eslint-plugin": "^7.3.1", "@typescript-eslint/parser": "^7.3.1", "chai": "^4.3.6", "chai-as-promised": "^7.1.1", "eslint": "^8.57.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-prettier": "^5.1.3", "mocha": "^10.0.0", "mocha-junit-reporter": "^2.1.0", "prettier": "^3.2.5", "ts-node": "^10.9.2", "typescript": "^5.4.2" }, "files": [ "lib/**/*" ] }