forked from klaviyo/klaviyo-api-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 813 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
{
"name": "klaviyo-api",
"version": "7.2.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": "npm run build && node dist/client.js",
"sample": "tsc --project tsconfig.sample.json && PK=$npm_config_pk node sample/dist/sample/sample.js"
},
"author": "Klaviyo-dev",
"license": "MIT",
"dependencies": {
"axios": "^1.4.0",
"exponential-backoff": "^3.1.1",
"form-data": "^4.0.0"
},
"devDependencies": {
"@types/node": "^12",
"typescript": "^4.7"
}
}