-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
80 lines (80 loc) · 2.21 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "braze-api",
"version": "2.10.1",
"description": "Track users, send messages, export data, and more with Braze API.",
"author": "Mark <[email protected]>",
"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.6.1",
"@commitlint/config-conventional": "19.6.0",
"@eslint/compat": "1.2.5",
"@eslint/eslintrc": "3.2.0",
"@eslint/js": "9.18.0",
"@types/jest": "29.5.14",
"@types/node": "22.10.10",
"@typescript-eslint/eslint-plugin": "8.21.0",
"@typescript-eslint/parser": "8.21.0",
"eslint": "9.18.0",
"eslint-plugin-prettier": "5.2.3",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-tsdoc": "0.4.0",
"fetch-mock-jest": "1.5.1",
"globals": "15.14.0",
"husky": "9.1.7",
"jest": "29.7.0",
"jest-watch-typeahead": "2.2.2",
"lint-staged": "15.4.2",
"prettier": "3.4.2",
"ts-jest": "29.2.5",
"typedoc": "0.27.6",
"typescript": "5.7.3"
},
"files": [
"cjs/",
"esm/"
],
"engines": {
"node": ">=14"
},
"license": "MIT"
}