-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
61 lines (61 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
{
"name": "ServiceCloudVoice",
"version": "1.0.0",
"publishConfig": {
"registery": "https://nexus.soma.salesforce.com/nexus/content/groups/npm-all/"
},
"description": "Service Cloud Voice Lambda functions",
"homepage": "https://git.soma.salesforce.com/hvcc/aws-integration",
"keywords": [
"Service Cloud Voice",
"Lambda",
"scv"
],
"author": "Salesforce.com",
"repository": {
"type": "git",
"url": "[email protected]:hvcc/aws-integration.git"
},
"engines": {
"node": ">= 8.12.0",
"yarn": ">= 1.16.0"
},
"scripts": {
"lint": "eslint --fix ./**/*.js ./**/*test.js",
"prettier": "prettier --config .prettyrc --write ./*.js",
"test": "jest --collect-coverage",
"clean": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +; find . -name 'coverage' -type d -prune -exec rm -rf '{}' +; find . -name '*.zip' -type f -prune -exec rm -rf '{}' +;"
},
"devDependencies": {
"eslint": "8.23.1",
"eslint-config-lambdas": "0.3.0",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-jest": "3.0.2",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.2.1",
"jest": "28.1.0",
"prettier": "2.7.1",
"rewire": "6.0.0"
},
"jest": {
"clearMocks": true
},
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"dependencies": {
"aws-param-store": "3.2.0",
"aws-sdk": "2.1354.0",
"axios": "0.27.2",
"axios-logger": "2.5.0",
"axios-retry": "3.3.1",
"ebml": "3.0.0",
"flat": "5.0.2",
"jsonwebtoken": "9.0.0",
"selfsigned": "2.0.1",
"uuid": "3.4.0"
}
}