-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
32 lines (32 loc) · 910 Bytes
/
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
{
"name": "klaviyo-api",
"version": "13.0.0",
"description": "A typescript client for the Klaviyo API",
"repository": {
"type": "git",
"url": "[email protected]:klaviyo/klaviyo-api-node.git"
},
"main": "dist/api.js",
"types": "dist/api.d.ts",
"scripts": {
"clean": "rm -Rf node_modules/ *.js",
"build": "tsc",
"test": "jest",
"sample": "tsc --project tsconfig.sample.json && PK=$npm_config_pk node sample/dist/sample/sample.js"
},
"author": "Klaviyo-dev",
"license": "MIT",
"dependencies": {
"axios": "^1.7.7",
"exponential-backoff": "^3.1.1",
"form-data": "^4.0.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.12",
"@types/node": "^12",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^4.7"
}
}