UNPKG

1.21 kBJSONView Raw
1{
2 "name": "each-arg",
3 "version": "0.1.0",
4 "description": "Iterates through arguments or any other array-like object starting from specific index.",
5 "main": "dist/each-arg.cjs.js",
6 "module": "dist/each-arg.es.js",
7 "browser": "dist/each-arg.umd.js",
8 "types": "types/index.d.ts",
9 "bundlib": {
10 "name": "eachArg",
11 "equals": true,
12 "min": "browser"
13 },
14 "scripts": {
15 "clean": "rm -rf .cache dist types coverage",
16 "dev": "bundlib -dw",
17 "build": "tslint src/**/*.ts && bundlib -d",
18 "test": "jest --colors",
19 "preversion": "npm run clean && npm run build && npm test"
20 },
21 "repository": {
22 "type": "git",
23 "url": "git+https://github.com/manferlo81/each-arg.git"
24 },
25 "keywords": [],
26 "author": "",
27 "license": "ISC",
28 "bugs": {
29 "url": "https://github.com/manferlo81/each-arg/issues"
30 },
31 "homepage": "https://github.com/manferlo81/each-arg#readme",
32 "devDependencies": {
33 "@types/jest": "^24.0.13",
34 "@types/node": "^12.0.4",
35 "bundlib": "^0.4.1",
36 "eslint": "^5.16.0",
37 "jest": "^24.8.0",
38 "tslint": "^5.17.0",
39 "typescript": "^3.5.1"
40 },
41 "dependencies": {
42 "args-to-arr": "^1.3.11",
43 "is-array-like": "^1.1.2"
44 }
45}