-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
68 lines (68 loc) · 1.69 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/scv-connector-base",
"version": "4.4.5",
"description": "Salesforce Service Cloud Connector Base",
"main": "dist/scv-connector-base.js",
"private": false,
"scripts": {
"gulp": "gulp",
"test": "gulp test",
"lint": "gulp lint",
"jsdoc": "jsdoc -d ./docs ./src/main/*.js README.md"
},
"pre-commit": [
"gulp"
],
"types": "ts-declaration/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/salesforce/scv-connector-base.git"
},
"author": "Salesforce Service Cloud Voice",
"license": "BSD-3-Clause",
"homepage": "https://github.com/salesforce/scv-connector-base#readme",
"keywords": [
"Service Cloud Voice",
"Salesforce",
"Telephony",
"SDK",
"Connector"
],
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"@babel/register": "^7.10.1",
"gulp": "^4.0.2",
"gulp-eslint": "^2.0.0",
"gulp-jest": "^4.0.3",
"gulp-shell": "^0.5.2",
"jest": "^26.6.3",
"jest-cli": "^24.9.0",
"jest-html-reporter": "3.2.0",
"jsdoc": "^3.6.3",
"loader-utils": "^2.0.3",
"pre-commit": "^1.2.2",
"typescript": "^4.0.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-stream": "^7.0.0"
},
"dependencies": {
"@babel/runtime": "^7.11.2",
"babel-loader": "^8.2.2",
"yargs": "^13.3.2"
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
}
}