-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
68 lines (68 loc) · 1.66 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
{
"name": "salesforce-webhooks",
"version": "1.1.14",
"description": "Provides an interface to create webhooks in Salesforce for different SObject events",
"keywords": [
"salesforce",
"webhook",
"promise",
"async"
],
"main": "dist",
"files": [
"dist"
],
"module": "src/index.js",
"esm": {
"cjs": true
},
"scripts": {
"build": "webpack",
"build:debug": "yarn build --mode development",
"build:release": "yarn build --mode production",
"test": "mocha",
"test:coverage": "c8 yarn test",
"clean": "rm -rf dist",
"lint": "eslint .",
"lint:format": "yarn lint --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jverce/salesforce-webhooks.git"
},
"author": "jverce",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/jverce/salesforce-webhooks/issues"
},
"homepage": "https://github.com/jverce/salesforce-webhooks#readme",
"devDependencies": {
"antlr4ts": "^0.5.0-alpha.3",
"apex-parser": "^2.5.0",
"c8": "^7.7.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^7.28.0",
"eslint-plugin-jsonc": "^1.3.1",
"eslint-plugin-putout": "^8.0.1",
"esm": "^3.2.25",
"handlebars": "^4.7.6",
"install": "^0.13.0",
"jsonwebtoken": "^8.5.1",
"junit-xml": "^1.2.0",
"libxmljs": "^1.0.11",
"mocha": "^8.2.1",
"putout": "^18.1.1",
"sinon": "^9.2.1",
"webpack": "^5.6.0",
"webpack-cli": "^4.2.0",
"yargs": "^16.1.1"
},
"dependencies": {
"axios": "^0.21.0",
"bindings": "^1.5.0",
"handlebars-loader": "^1.7.1",
"uuid": "^8.3.1"
}
}