-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
71 lines (71 loc) · 1.9 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": "salesforce-pubsub-api-client",
"version": "5.2.2",
"type": "module",
"description": "A node client for the Salesforce Pub/Sub API",
"author": "pozil",
"license": "CC0-1.0",
"homepage": "https://github.com/pozil/pub-sub-api-node-client",
"main": "dist/client.js",
"exports": {
".": {
"require": "./dist/client.cjs",
"import": "./dist/client.js"
}
},
"scripts": {
"build": "tsup && tsc",
"test": "jasmine",
"format": "prettier --write '**/*.{css,html,js,json,md,yaml,yml}'",
"format:verify": "prettier --check '**/*.{css,html,js,json,md,yaml,yml}'",
"lint": "eslint \"src/**\" \"spec/**\"",
"prepare": "husky || true",
"precommit": "lint-staged",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@grpc/grpc-js": "^1.12.5",
"@grpc/proto-loader": "^0.7.13",
"avro-js": "^1.12.0",
"certifi": "^14.5.15",
"jsforce": "^3.6.3",
"undici": "^6.21.0"
},
"devDependencies": {
"@chialab/esbuild-plugin-meta-url": "^0.18.2",
"dotenv": "^16.4.7",
"eslint": "^9.18.0",
"eslint-plugin-jasmine": "^4.2.2",
"husky": "^9.1.7",
"jasmine": "^5.5.0",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"tsup": "^8.3.5",
"typescript": "^5.7.3"
},
"lint-staged": {
"**/*.{css,html,js,json,md,yaml,yml}": [
"prettier --write"
],
"**/{src,spec}/**/*.js": [
"eslint"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/pozil/pub-sub-api-node-client"
},
"keywords": [
"salesforce",
"pubsub",
"api",
"grpc"
],
"files": [
"dist/*",
"pubsub_api.proto"
],
"volta": {
"node": "20.17.0"
}
}