-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.73 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.73 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "purecloud-client-app-sdk",
"version": "2.6.10",
"description": "Javascript API for integrating 3rd-party apps with Genesys Cloud",
"main": "dist/main.js",
"jsnext:main": "dist/main.mjs",
"browser": "dist/purecloud-client-app-sdk.js",
"types": "dist/index.d.ts",
"files": [
"/LICENSE",
"/README.md",
"/dist/",
"/package.json",
"/src/"
],
"directories": {
"lib": "src",
"examples": "examples"
},
"scripts": {
"lint": "eslint --ext .js,.ts scripts/ src/ *.js",
"tsc": "tsc --project tsconfig.json --noEmit",
"tsc:build": "tsc --project tsconfig.build.json",
"examples": "node scripts/build-examples.js",
"start": "rollup --config dev.rollup.config.js --watch",
"rollup": "rollup --config rollup.config.js",
"build": "npm run lint && npm run tsc:build && npm run rollup",
"docs": "ts-node scripts/build-docs.ts",
"pre-push": "./scripts/pre-push.sh",
"pretest": "npm run tsc",
"test": "karma start --single-run --browsers Chromium,Firefox,WebKit",
"test:ci": "BROWSER_NO_ACTIVITY_TIMEOUT=60000 karma start --single-run --browsers Chromium,WebKit --log-level debug",
"watch:test": "karma start",
"publish-examples": "ts-node scripts/publish-examples.ts",
"about": "node scripts/about.js"
},
"pre-push": [
"pre-push"
],
"keywords": [
"MyPureCloud",
"Genesys Cloud",
"Genesys Cloud Apps"
],
"author": {
"name": "Genesys Telecommunications Laboratories, Inc.",
"url": "https://developer.mypurecloud.com"
},
"homepage": "https://github.com/MyPureCloud/client-app-sdk",
"bugs": {
"url": "https://github.com/MyPureCloud/client-app-sdk/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/MyPureCloud/client-app-sdk.git"
},
"license": "MIT",
"engines": {
"node": ">=14"
},
"dependencies": {
"@babel/runtime": "^7.10.3",
"genesys-cloud-service-discovery-web": "3.0.500",
"query-string": "7.1.3"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-transform-object-assign": "^7.10.3",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/preset-typescript": "^7.10.1",
"@endyjasmi/karma-playwright-launcher": "^0.0.3",
"@rollup/plugin-babel": "^5.0.4",
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^8.0.1",
"@rollup/plugin-replace": "^2.3.3",
"@types/child-process-promise": "^2.2.1",
"@types/fs-extra": "^9.0.1",
"@types/gh-pages": "^3.0.0",
"@types/jasmine": "^3.5.10",
"@types/lodash": "^4.14.159",
"@types/yargs": "^15.0.5",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"child-process-promise": "^2.0.2",
"dotenv": "^16.0.3",
"eslint": "^7.2.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"fs-extra": "^9.0.0",
"gh-pages": "^0.11.0",
"glob": "^7.1.6",
"jasmine": "^2.4.1",
"karma": "^5.0.9",
"karma-jasmine": "2.0.1",
"karma-rollup-preprocessor": "^7.0.5",
"lodash": "^4.17.20",
"playwright": "1.30.0",
"pre-push": "^0.1.1",
"rollup": "^2.12.1",
"rollup-plugin-livereload": "^1.3.0",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-terser": "^6.1.0",
"ts-node": "^8.10.2",
"typedoc": "^0.17.7",
"typedoc-plugin-markdown": "^2.3.1",
"typedoc-plugin-no-inherit": "^1.1.10",
"typescript": "^3.9.5"
},
"peerDependencies": {
"snyk": "1.1297.3",
"snyk-to-html": "2.6.0"
}
}