braze-api
Version:
Track users, send messages, export data, and more with Braze API.
81 lines (80 loc) • 2.27 kB
JSON
{
"name": "braze-api",
"version": "2.11.0",
"description": "Track users, send messages, export data, and more with Braze API.",
"author": "Mark <mark@remarkablemark.org>",
"main": "cjs/index.js",
"module": "esm/index.js",
"exports": {
"import": "./esm/index.js",
"require": "./cjs/index.js"
},
"scripts": {
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "tsc -p tsconfig.build.json",
"build:esm": "npm run build:cjs -- --module nodenext --outDir esm",
"clean": "rm -rf cjs coverage docs esm",
"docs": "typedoc",
"docs:watch": "npm run docs -- --watch",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"lint:tsc": "tsc --noEmit",
"prepare": "husky",
"prepublishOnly": "npm run lint && npm run lint:tsc && npm run test:ci && npm run test:esm && npm run clean && npm run build",
"test": "jest",
"test:ci": "CI=true jest --ci --colors --coverage",
"test:esm": "npm run build:esm && node --test src",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/braze-community/braze-node"
},
"bugs": {
"url": "https://github.com/braze-community/braze-node/issues"
},
"keywords": [
"braze",
"api",
"rest",
"node",
"appboy"
],
"dependencies": {
"@types/node-fetch": "2.6.6",
"node-fetch": "2.7.0"
},
"devDependencies": {
"@commitlint/cli": "19.8.0",
"@commitlint/config-conventional": "19.8.0",
"@eslint/compat": "1.2.8",
"@eslint/eslintrc": "3.3.1",
"@eslint/js": "9.25.1",
"@types/jest": "29.5.14",
"@types/node": "22.15.3",
"@typescript-eslint/eslint-plugin": "8.31.1",
"@typescript-eslint/parser": "8.31.1",
"eslint": "9.25.1",
"eslint-plugin-prettier": "5.2.6",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-tsdoc": "0.4.0",
"fetch-mock-jest": "1.5.1",
"globals": "16.0.0",
"husky": "9.1.7",
"jest": "29.7.0",
"jest-watch-typeahead": "2.2.2",
"lint-staged": "15.5.1",
"prettier": "3.5.3",
"ts-jest": "29.3.2",
"typedoc": "0.28.3",
"typescript": "5.8.3"
},
"files": [
"cjs/",
"esm/"
],
"engines": {
"node": ">=14"
},
"license": "MIT"
}