UNPKG

1.49 kBJSONView Raw
1{
2 "name": "each-arg",
3 "version": "1.1.1",
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 "bundlib": {
19 "name": "eachArg",
20 "equals": true,
21 "min": "browser"
22 },
23 "scripts": {
24 "clean": "rm -rf .cache dist types coverage",
25 "dev": "bundlib -dw",
26 "build": "tslint src/**/*.ts && bundlib -d",
27 "test": "jest --colors",
28 "preversion": "npm run clean && npm run build && npm test"
29 },
30 "dependencies": {
31 "args-to-arr": "^1.4.3",
32 "is-array-like": "^1.1.2",
33 "is-function": "^1.0.1"
34 },
35 "devDependencies": {
36 "@types/is-function": "^1.0.0",
37 "@types/jest": "^24.0.15",
38 "@types/node": "^12.0.10",
39 "bundlib": "^0.5.2",
40 "eslint": "^6.0.0",
41 "jest": "^24.8.0",
42 "tslint": "^5.18.0",
43 "typescript": "^3.5.2"
44 },
45 "files": [
46 "dist",
47 "types"
48 ],
49 "author": {
50 "name": "Manuel Fernández",
51 "email": "manferlo81@gmail.com"
52 },
53 "repository": {
54 "type": "git",
55 "url": "git+https://github.com/manferlo81/each-arg.git"
56 },
57 "bugs": {
58 "url": "https://github.com/manferlo81/each-arg/issues"
59 },
60 "homepage": "https://github.com/manferlo81/each-arg#readme",
61 "license": "MIT"
62}