UNPKG

deep-iterator

Version:

Deep iteration of any object or iterable collection.

65 lines (64 loc) 1.81 kB
{ "name": "deep-iterator", "version": "1.1.0", "description": "Deep iteration of any object or iterable collection.", "main": "./lib/deep-iterator.js", "jsnext:main": "src/index.js", "module": "es/index.js", "scripts": { "clean": "rimraf lib", "transpile": "babel --source-maps inline src --out-dir lib", "build": "npm run clean && npm run transpile", "prepublish": "npm run build", "commit": "git-cz", "commita": "git add . && git status -s && git-cz", "lint": "eslint src test", "cover": "babel-node $(npm bin)/isparta cover _mocha -- \"test/{unit,integration}/**/*.test.js\"", "coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls", "test": "mocha \"test/{unit,integration}/**/*.test.js\"" }, "repository": { "type": "git", "url": "git+https://github.com/couralex/deep-iterator.git" }, "keywords": [ "iterator", "generator", "deep", "nested", "recursive", "traverse", "walk", "dfs", "bfs", "object" ], "author": "couralex <couralex@courpron.net>", "license": "MIT", "bugs": { "url": "https://github.com/couralex/deep-iterator/issues" }, "homepage": "https://github.com/couralex/deep-iterator#readme", "config": { "commitizen": { "path": "cz-conventional-changelog" } }, "devDependencies": { "babel-cli": "^6.18.0", "babel-plugin-transform-runtime": "^6.15.0", "babel-preset-es2015": "^6.18.0", "chai": "^3.5.0", "commitizen": "^2.9.5", "coveralls": "^2.11.15", "cz-conventional-changelog": "^1.2.0", "eslint": "^3.13.0", "isparta": "^4.0.0", "mocha": "^3.2.0", "mocha-lcov-reporter": "^1.2.0", "rimraf": "^2.5.4" }, "dependencies": { "babel-runtime": "^6.20.0" } }