UNPKG

stashback

Version:

Stashes callbacks for later execution

64 lines (63 loc) 1.59 kB
{ "name": "stashback", "version": "2.0.1", "description": "Stashes callbacks for later execution", "main": "index.js", "scripts": { "codeclimate": "(test -e .codeclimate && npm run coverage && source .codeclimate && codeclimate-test-reporter < coverage/lcov.info) || echo skipping codeclimate", "coverage": "nyc --report html --reporter lcov --reporter text-summary zUnit", "example": "( cd example; node app.js )", "lint": "eslint .", "lint-staged": "lint-staged", "test": "zUnit", "prettier": "prettier --check .", "prepare": "husky install" }, "engines": { "node": ">=10.0.0" }, "keywords": [ "callback", "manager", "stash", "timeout", "once" ], "author": "Stephen Cresswell", "license": "ISC", "devDependencies": { "async": "^3.2.3", "chance": "^1.1.8", "eslint": "^7.32.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-prettier": "^4.0.0", "express": "^4.17.1", "husky": "^8.0.1", "lint-staged": "^12.4.2", "nyc": "^15.1.0", "prettier": "2.6.2", "uuid": "^7.0.3", "zunit": "^3.2.1" }, "dependencies": { "debug": "^4.3.4" }, "directories": { "example": "example", "test": "tests" }, "repository": { "type": "git", "url": "https://github.com/guidesmiths/stashback.git" }, "bugs": { "url": "https://github.com/guidesmiths/stashback/issues" }, "homepage": "https://guidesmiths.github.io/stashback/", "lint-staged": { "**/*": "prettier --write --ignore-unknown" }, "zUnit": { "pollute": true } }