UNPKG

1.66 kBJSONView Raw
1{
2 "name": "each-arg",
3 "version": "1.1.3",
4 "description": "Iterates through arguments or any other array-like object starting from specific index.",
5 "keywords": [
6 "each",
7 "for-each",
8 "arguments",
9 "params",
10 "array",
11 "array-like",
12 "callback"
13 ],
14 "main": "dist/each-arg.cjs.js",
15 "module": "dist/each-arg.es.js",
16 "browser": "dist/each-arg.umd.js",
17 "types": "types/index.d.ts",
18 "typings": "types/index.d.ts",
19 "bundlib": {
20 "equals": true,
21 "min": "browser"
22 },
23 "scripts": {
24 "clean": "rm -rf node_modules/.cache/bundlib node_modules/.cache/jest dist types coverage",
25 "lint": "tslint src/**/*.ts",
26 "dev": "bundlib -dw",
27 "build": "bundlib -d",
28 "test": "jest --color -w 3",
29 "preversion": "npm run clean && npm test && npm run lint && npm run build"
30 },
31 "dependencies": {
32 "args-to-arr": "^1.4.7",
33 "is-array-like": "^1.1.2",
34 "is-function": "^1.0.1"
35 },
36 "devDependencies": {
37 "@types/is-function": "^1.0.0",
38 "@types/jest": "^24.0.18",
39 "@types/node": "^12.7.5",
40 "bundlib": "^0.12.5",
41 "chokidar": "^3.0.2",
42 "eslint": "^6.4.0",
43 "husky": "^3.0.5",
44 "jest": "^24.9.0",
45 "ts-jest": "^24.1.0",
46 "tslint": "^5.20.0",
47 "typescript": "^3.6.3"
48 },
49 "files": [
50 "dist",
51 "types"
52 ],
53 "author": {
54 "name": "Manuel Fernández",
55 "email": "manferlo81@gmail.com"
56 },
57 "repository": {
58 "type": "git",
59 "url": "git+https://github.com/manferlo81/each-arg.git"
60 },
61 "bugs": {
62 "url": "https://github.com/manferlo81/each-arg/issues"
63 },
64 "homepage": "https://github.com/manferlo81/each-arg#readme",
65 "license": "MIT"
66}