UNPKG

array-types-counter

Version:

Simple helper to obtain the count of different array item's types.

64 lines (63 loc) 1.45 kB
{ "version": "1.0.1", "name": "array-types-counter", "author": "Alberto Rico", "keywords": [ "array", "types", "count" ], "repository": { "url": "https://github.com/alrico88/array-types-counter" }, "license": "MIT", "main": "dist/index.js", "module": "dist/array-types-counter.esm.js", "typings": "dist/index.d.ts", "files": [ "dist", "src" ], "engines": { "node": ">=10" }, "scripts": { "start": "tsdx watch", "build": "tsdx build", "test": "tsdx test", "lint": "tsdx lint", "prepare": "tsdx build", "docs": "typedoc src/index.ts --readme", "coveralls": "tsdx test --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js" }, "peerDependencies": {}, "husky": { "hooks": { "pre-commit": "tsdx lint" } }, "prettier": { "printWidth": 80, "semi": true, "singleQuote": true, "trailingComma": "es5" }, "devDependencies": { "@types/lodash": "^4.14.170", "@typescript-eslint/eslint-plugin": "^4.17.0", "@typescript-eslint/parser": "^4.17.0", "coveralls": "^3.1.0", "eslint": "^7.23.0", "husky": "^6.0.0", "tsdx": "^0.14.1", "tslib": "^2.1.0", "typedoc": "^0.20.34", "typedoc-plugin-markdown": "^3.6.0", "typescript": "^4.2.3" }, "dependencies": { "lodash": "^4.17.21", "lodash-es": "^4.17.21", "number-helper-functions": "^4.0.0" } }