-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 922 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
33
34
{
"name": "@gojob/sfmc-rest-sdk",
"version": "1.0.3",
"description": "Salesforce Marketing Cloud REST API client",
"repository": "https://github.com/gojob-1337/sfmc-rest-sdk",
"author": "Yannis Torres <yannis@gojob.com>",
"license": "MIT",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"scripts": {
"build": "./node_modules/.bin/tsc -p tsconfig.build.json",
"lint": "./node_modules/.bin/eslint . --ext .ts",
"lint:fix": "./node_modules/.bin/eslint . --ext .ts --fix",
"test": "./node_modules/.bin/jest"
},
"keywords": [
"sfmc",
"salesforce",
"client"
],
"devDependencies": {
"@gojob/eslint-config": "^3.0.0",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.20",
"eslint": "^7.17.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"dependencies": {
"axios": "^0.21.1"
}
}