foreach-prop
Version:
Array-like methods for objects
81 lines (80 loc) • 2.02 kB
JSON
{
"name": "foreach-prop",
"version": "2.1.0",
"description": "Array-like methods for objects",
"keywords": [
"for-in",
"for-each",
"object",
"properties",
"property",
"key",
"keys",
"forEach",
"map",
"filter",
"keyOf",
"lastKeyOf",
"find",
"findKey",
"reduce",
"includes",
"some",
"every"
],
"main": "dist/each-prop.js",
"module": "dist/each-prop.mjs",
"browser": "dist/each-prop.umd.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"scripts": {
"clean:cache": "rimraf node_modules/.cache/{bundlib,jest}",
"clean:build": "rimraf dist coverage",
"clean": "run-p clean:*",
"lint:test": "eslint __test__/**/*.ts",
"lint:src": "eslint src/**/*.ts",
"lint": "run-p lint:*",
"test": "jest --color -w 3",
"test:watch": "jest --color -w 3 --watch-all",
"dev": "bundlib -dw",
"build": "bundlib -d",
"prerelease": "run-s clean lint test build",
"release": "standard-version"
},
"dependencies": {
"args-to-arr": "^1.4.9",
"is-function": "^1.0.2"
},
"devDependencies": {
"@babel/core": "^7.14.2",
"@babel/preset-env": "^7.14.2",
"@types/is-function": "^1.0.0",
"@types/jest": "^26.0.23",
"@types/node": "^15.0.3",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"bundlib": "^0.18.4",
"chokidar": "^3.5.1",
"eslint": "^7.26.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"standard-version": "^9.3.0",
"ts-jest": "^26.5.6",
"typescript": "^4.2.4"
},
"author": {
"name": "Manuel Fernández",
"email": "manferlo81@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/manferlo81/foreach-prop.git"
},
"bugs": {
"url": "https://github.com/manferlo81/foreach-prop/issues"
},
"homepage": "https://github.com/manferlo81/foreach-prop#readme",
"license": "MIT"
}