UNPKG

1.43 kBJSONView Raw
1{
2 "name": "each-arg",
3 "version": "0.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.3.11",
32 "is-array-like": "^1.1.2"
33 },
34 "devDependencies": {
35 "@types/jest": "^24.0.13",
36 "@types/node": "^12.0.4",
37 "bundlib": "^0.4.1",
38 "eslint": "^5.16.0",
39 "jest": "^24.8.0",
40 "tslint": "^5.17.0",
41 "typescript": "^3.5.1"
42 },
43 "files": [
44 "dist",
45 "types"
46 ],
47 "author": {
48 "name": "Manuel Fernández",
49 "email": "manferlo81@gmail.com"
50 },
51 "repository": {
52 "type": "git",
53 "url": "git+https://github.com/manferlo81/each-arg.git"
54 },
55 "bugs": {
56 "url": "https://github.com/manferlo81/each-arg/issues"
57 },
58 "homepage": "https://github.com/manferlo81/each-arg#readme",
59 "license": "MIT"
60}