UNPKG

data-interchange

Version:
64 lines (63 loc) 1.57 kB
{ "name": "data-interchange", "version": "0.2.1", "description": "Data interchange handler & DB fallback handler", "main": "dist/index.js", "scripts": { "build": "rimraf dist && tsc", "format": "prettier --write \"{source,test}/**/*.{js,ts}\"", "prepublishOnly": "npm run build", "test": "run-s build test:specs test:format", "test:format": "prettier-check '{source,test}/**/*.{js,ts}'", "test:specs": "nyc mocha -r test/index.js 'test/specs/**/*.spec.js'" }, "files": [ "dist/**/*" ], "repository": { "type": "git", "url": "git+https://github.com/perry-mitchell/data-interchange.git" }, "lint-staged": { "{source,test}/**/*.{js,ts}": [ "prettier --write" ] }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "keywords": [ "data", "interchange", "db", "database", "fallback", "replace", "delegate" ], "author": "Perry Mitchell <perry@perrymitchell.net>", "license": "MIT", "bugs": { "url": "https://github.com/perry-mitchell/data-interchange/issues" }, "homepage": "https://github.com/perry-mitchell/data-interchange#readme", "dependencies": { "@buttercup/channel-queue": "^0.5.0", "layerr": "^0.1.2" }, "devDependencies": { "chai": "^4.2.0", "husky": "^4.3.0", "lint-staged": "^10.4.0", "mocha": "^8.1.3", "npm-run-all": "^4.1.5", "nyc": "^15.1.0", "prettier": "^1.19.1", "prettier-check": "^2.0.0", "rimraf": "^3.0.2", "sinon": "^9.2.0", "typescript": "^4.0.3" } }