UNPKG

@vivianhealth/braze-segment-debounce

Version:

Segment utilities to debounce data before it reaches the Braze destination

106 lines (105 loc) 2.87 kB
{ "name": "@vivianhealth/braze-segment-debounce", "version": "1.0.8", "description": "Segment utilities to debounce data before it reaches the Braze destination", "main": "index.js", "type": "commonjs", "scripts": { "test": "jest", "test:watch": "jest --watch", "lint": "eslint '{*,{src,docs}/**/*,__{tests,mocks}__/**/*}.js' || true", "pretty": "prettier --write '{*,{src,docs,.github}/**/*,__{tests,mocks}__/**/*}.{json,md,yml,js}'", "fixcode": "yarn run pretty", "semantic-release": "semantic-release", "release": "yarn run semantic-release", "release-ci": "echo 'unsafe-perm = true' > ./.npmrc && yarn run semantic-release && rm -rf ./.npmrc", "commit": "git-cz", "prepare": "husky install", "clean": "rimraf index.js browser.js server.js lib", "build:only": "NODE_ENV=production babel src --out-dir .", "build": "yarn run clean && yarn run build:only", "prepack": "yarn run build" }, "repository": "https://github.com/nursefly/braze-segment-debounce", "author": "Andres Restrepo <andres@thelinuxkid.com>", "contributors": [ { "name": "Brandon Phillips", "email": "bericp1@gmail.com" } ], "license": "MIT", "private": false, "files": [ "lib", ".eslintignore", ".eslintrc.json", ".gitignore", ".npmignore", ".prettierignore", ".prettierrc.json", "index.js", "server.js", "browser.js", "jest.config.js", "LICENSE", "package.json", "README.md", "yarn.lock" ], "devDependencies": { "@babel/cli": "^7.14.8", "@babel/core": "^7.15.0", "@babel/plugin-transform-runtime": "^7.15.0", "@babel/preset-env": "^7.15.0", "@commitlint/cli": "^13.1.0", "@commitlint/config-conventional": "^13.1.0", "commitizen": "^4.2.4", "cz-conventional-changelog": "^3.3.0", "eslint": "^7.32.0", "eslint-config-prettier": "^8.3.0", "eslint-config-standard": "^16.0.3", "eslint-plugin-import": "^2.24.0", "eslint-plugin-jest": "^24.4.0", "eslint-plugin-node": "^11.1.0", "eslint-plugin-promise": "^5.1.0", "husky": "^7.0.1", "jest": "^27.0.6", "lint-staged": "^11.1.2", "prettier": "^2.3.2", "rimraf": "^3.0.2", "semantic-release": "^17.4.5" }, "engines": { "node": ">=12.22.4" }, "lint-staged": { "{*,{src,docs}/**/*,__{tests,mocks}__/**/*}.js": [ "prettier --write", "eslint" ], "{*,{src,docs,.github}/**/*,__{tests,mocks}__/**/*}.{json,md,yml}": [ "prettier --write" ] }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } }, "commitlint": { "extends": [ "@commitlint/config-conventional" ] }, "release": { "branches": [ "main" ] }, "keywords": [ "Segment", "Braze" ], "dependencies": {} }