-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
71 lines (71 loc) · 1.88 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
{
"name": "sfmc-sdk",
"version": "2.1.2",
"description": "Libarary to simplify SFMC requests with updated dependencies and less overhead",
"main": "./lib/index.js",
"exports": {
".": {
"types": "./@types/index.d.ts",
"default": "./lib/index.js"
},
"./*": {
"types": "./@types/*.d.ts",
"default": "./lib/*.js"
}
},
"scripts": {
"test": "c8 --reporter=text mocha",
"lint": "eslint ./lib ./test",
"lint:fix": "eslint ./lib ./test --fix",
"lint-ts": "tsc -p tsconfig.precommit.json",
"prepare": "husky || true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DougMidgley/SFMC-SDK.git"
},
"author": "Doug Midgley <[email protected]>",
"license": "BSD-3-Clause",
"dependencies": {
"axios": "^1.7.2",
"fast-xml-parser": "4.4.1",
"p-limit": "5.0.0"
},
"keywords": [
"fuel",
"exacttarget",
"salesforce",
"marketing",
"cloud",
"soap",
"rest",
"auth",
"sdk"
],
"devDependencies": {
"@eslint/js": "9.6.0",
"@types/mocha": "10.0.7",
"@types/node": "20.14.9",
"assert": "2.1.0",
"axios-mock-adapter": "1.22.0",
"c8": "10.1.2",
"chai": "5.1.1",
"eslint": "9.6.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jsdoc": "48.5.0",
"eslint-plugin-mocha": "10.4.3",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-unicorn": "54.0.0",
"husky": "9.0.11",
"mocha": "10.5.2",
"prettier": "3.3.2",
"prettier-eslint": "16.3.0",
"sinon": "18.0.0",
"typescript": "5.5.2"
},
"engines": {
"npm": ">=9",
"node": ">=18"
},
"type": "module"
}