-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.09 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
{
"name": "sfmc-ts",
"version": "1.1.6",
"repository": {
"type": "git",
"url": "https://github.com/bxxf/sfmc-ts"
},
"license": "MIT",
"description": "A helper library for Salesforce Marketing Cloud (SFMC) to make it easier to work with the Data Extension API.",
"author": "Filip Brebera <[email protected]>",
"scripts": {
"build": "tsc",
"test": "jest"
},
"private": false,
"files": [
"dist"
],
"keywords": [
"salesforce",
"marketing",
"cloud",
"sfmc",
"data",
"extension",
"api",
"helper",
"library",
"dataextension"
],
"prepublishOnly": "tsc",
"main": "dist/index.js",
"types": "dist/types.d.ts",
"typings": "dist/types.d.ts",
"dependencies": {
"node-fetch": "^2.6.9",
"xml2js": "^0.5.0"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/nock": "^11.1.0",
"@types/node": "^18.15.5",
"@types/node-fetch": "^2.6.2",
"@types/xml2js": "^0.4.11",
"jest": "^29.5.0",
"nock": "^13.3.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
}
}