-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.03 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
{
"name": "client-sf-bulk2",
"version": "0.8.0",
"description": "A client for the Salesforce bulk API V2",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/clemb8/client-sf-bulk2"
},
"keywords": [
"salesforce",
"bulkAPI",
"salesforce-api"
],
"scripts": {
"prepare": "npm run build",
"prepublishOnly": "npm run build",
"prebuild": "tslint -c tslint.json -p tsconfig.json --fix",
"generate-changelog": "npx github-changes -n ${npm_package_version} --use-commit-body -o clemb8 -r client-sf-bulk2 -b main",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"version": "npm run generate-changelog && git add CHANGELOG.md",
"postversion": "git push && git push --tags"
},
"author": "clemb8",
"license": "MIT",
"devDependencies": {
"@types/node": "^18.7.9",
"tslint": "^6.1.3",
"typedoc": "^0.23.10",
"typescript": "^4.7.4"
},
"dependencies": {
"axios": "^1.6.0"
},
"engines": {
"node": "17.1"
}
}