each-arg
Version:
Iterates through arguments or any other array-like object starting from specific index.
67 lines (66 loc) • 1.66 kB
JSON
{
"name": "each-arg",
"version": "1.1.3",
"description": "Iterates through arguments or any other array-like object starting from specific index.",
"keywords": [
"each",
"for-each",
"arguments",
"params",
"array",
"array-like",
"callback"
],
"main": "dist/each-arg.cjs.js",
"module": "dist/each-arg.es.js",
"browser": "dist/each-arg.umd.js",
"types": "types/index.d.ts",
"typings": "types/index.d.ts",
"bundlib": {
"equals": true,
"min": "browser"
},
"scripts": {
"clean": "rm -rf node_modules/.cache/bundlib node_modules/.cache/jest dist types coverage",
"lint": "tslint src/**/*.ts",
"dev": "bundlib -dw",
"build": "bundlib -d",
"test": "jest --color -w 3",
"preversion": "npm run clean && npm test && npm run lint && npm run build"
},
"dependencies": {
"args-to-arr": "^1.4.7",
"is-array-like": "^1.1.2",
"is-function": "^1.0.1"
},
"devDependencies": {
"@types/is-function": "^1.0.0",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.5",
"bundlib": "^0.12.5",
"chokidar": "^3.0.2",
"eslint": "^6.4.0",
"husky": "^3.0.5",
"jest": "^24.9.0",
"ts-jest": "^24.1.0",
"tslint": "^5.20.0",
"typescript": "^3.6.3"
},
"files": [
"dist",
"types"
],
"author": {
"name": "Manuel Fernández",
"email": "manferlo81@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/manferlo81/each-arg.git"
},
"bugs": {
"url": "https://github.com/manferlo81/each-arg/issues"
},
"homepage": "https://github.com/manferlo81/each-arg#readme",
"license": "MIT"
}