+51
-45
| { | ||
| "author": { | ||
| "email": "prefinem@gmail.com", | ||
| "name": "Prefinem", | ||
| "url": "https://prefinem.com" | ||
| }, | ||
| "devDependencies": { | ||
| "eslint": "^5.0.0", | ||
| "eslint-config-prettier": "^3.0.0", | ||
| "husky": "^0.14.3", | ||
| "jest": "^23.5.0", | ||
| "jsdoc": "^3.5.5", | ||
| "jsdoc-template": "https://github.com/braintree/jsdoc-template", | ||
| "jsdoc-to-markdown": "^4.0.1", | ||
| "lint-staged": "^7.2.0", | ||
| "pkg-ok": "^2.1.0", | ||
| "prettier": "1.14.2" | ||
| }, | ||
| "homepage": "https://github.com/Prefinem/afpf", | ||
| "license": "MIT", | ||
| "lint-staged": { | ||
| "*.js": [ | ||
| "eslint --fix", | ||
| "prettier --config ./.prettierrc.json --write", | ||
| "jest --bail --findRelatedTests", | ||
| "git add" | ||
| ] | ||
| }, | ||
| "name": "afpf", | ||
| "repository": { | ||
| "type": "git", | ||
| "url": "git+https://github.com/Prefinem/afpf" | ||
| }, | ||
| "scripts": { | ||
| "build": "./build.sh", | ||
| "clean": "yarn lint && yarn prettify", | ||
| "docs": "jsdoc --configure .jsdoc.json --verbose", | ||
| "docs:md": "jsdoc2md src/**.js >> DOCS.md", | ||
| "lint": "eslint src/*.js --fix", | ||
| "precommit": "lint-staged", | ||
| "prettify": "prettier --config ./.prettierrc.json --write \"src/*.js\"", | ||
| "pub": "yarn clean && yarn build && yarn publish dist/", | ||
| "staged": "lint-staged", | ||
| "test": "jest --coverage" | ||
| }, | ||
| "version": "0.0.2" | ||
| "author": { | ||
| "email": "prefinem@gmail.com", | ||
| "name": "Prefinem", | ||
| "url": "https://prefinem.com" | ||
| }, | ||
| "devDependencies": { | ||
| "codecov": "^3.2.0", | ||
| "eslint": "5.14.1", | ||
| "eslint-config-prettier": "^4.1.0", | ||
| "husky": "^1.0.0", | ||
| "jest": "^24.1.0", | ||
| "jest-junit": "^6.2.1", | ||
| "jsdoc": "^3.5.5", | ||
| "jsdoc-template": "https://github.com/braintree/jsdoc-template", | ||
| "jsdoc-to-markdown": "^4.0.1", | ||
| "lint-staged": "^8.0.0", | ||
| "pkg-ok": "^2.1.0", | ||
| "prettier": "1.15.3" | ||
| }, | ||
| "homepage": "https://github.com/Prefinem/afpf", | ||
| "license": "MIT", | ||
| "lint-staged": { | ||
| "*.js": [ | ||
| "eslint --fix", | ||
| "prettier --config ./.prettierrc.json --write", | ||
| "jest --bail --findRelatedTests", | ||
| "git add" | ||
| ] | ||
| }, | ||
| "name": "afpf", | ||
| "repository": { | ||
| "type": "git", | ||
| "url": "git+https://github.com/Prefinem/afpf" | ||
| }, | ||
| "scripts": { | ||
| "build": "./build.sh", | ||
| "clean": "yarn lint && yarn prettify", | ||
| "docs": "jsdoc --configure .jsdoc.json --verbose", | ||
| "docs:md": "jsdoc2md src/**.js >> DOCS.md", | ||
| "lint": "eslint src/*.js --fix", | ||
| "prettify": "prettier --config ./.prettierrc.json --write \"src/*.js\"", | ||
| "pub": "yarn clean && yarn build && yarn publish dist/", | ||
| "staged": "lint-staged", | ||
| "test": "jest --coverage" | ||
| }, | ||
| "version": "0.0.3", | ||
| "husky": { | ||
| "hooks": { | ||
| "pre-commit": "yarn docs:md && git add DOCS.md && lint-staged" | ||
| } | ||
| } | ||
| } |
+1
-1
@@ -9,3 +9,3 @@ /* eslint no-await-in-loop: off */ | ||
| * @param {Function} func Functions to be executed syncronously with their results passing to the next function | ||
| * @returns {Any} Response from final function passed | ||
| * @returns {Function} Function that will execute each function in order while passing the parameters to each function | ||
| * @example | ||
@@ -12,0 +12,0 @@ * |
8034
3.52%12
20%