-
Notifications
You must be signed in to change notification settings - Fork 317
/
package.json
76 lines (76 loc) · 2.45 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
72
73
74
75
76
{
"name": "amazon-connect-streams",
"version": "2.17.0",
"description": "Amazon Connect Streams Library",
"engines": {
"node": ">=12.0.0"
},
"directories": {
"lib": "./release"
},
"files": [
"/release",
"/src/index.d.ts"
],
"main": "release/connect-streams.js",
"types": "src/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/amazon-connect/amazon-connect-streams.git"
},
"keywords": [
"streams",
"softphone",
"ringtone",
"connect"
],
"scripts": {
"release": "npm run build-streams && npm run build-streams-dr && npm run test-mocha && npm run test-mocha-dr",
"build-streams": "webpack --config ./webpack/connect-streams.config.js && webpack --config ./webpack/connect-streams-min.config.js",
"build-streams-dr": "webpack --config ./webpack/connect-streams-dr.config.js && webpack --config ./webpack/connect-streams-dr-min.config.js",
"test-mocha": "nyc mocha \"test/unit/**/*.spec.js\" --ignore \"test/unit/drCoordinator/**\" --exit",
"test-mocha-dr": "nyc mocha \"test/unit/drCoordinator/*.spec.js\" --exit",
"clean": "rm -rf build/ node_modules build package-lock.json"
},
"author": "Amazon Web Services",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/amazon-connect/amazon-connect-streams/issues"
},
"homepage": "https://github.com/amazon-connect/amazon-connect-streams#readme",
"dependencies": {
"@amazon-connect/core": "1.0.4",
"@amazon-connect/site": "1.0.4",
"@amazon-connect/site-streams": "1.0.4"
},
"devDependencies": {
"@babel/eslint-parser": "^7.24.5",
"@babel/preset-env": "^7.24.5",
"@babel/preset-typescript": "^7.24.1",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"babel": "^6.23.0",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"chai": "^4.3.7",
"eslint": "^8.39.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"jest": "^29.7.0",
"jshint": "^2.13.6",
"mocha": "^10.2.0",
"mocha-jsdom": "^2.0.0",
"nyc": "^15.1.0",
"prettier": "^2.8.8",
"proxyquire": "^2.1.3",
"pump": "^3.0.0",
"sinon": "^12.0.0",
"terser-webpack-plugin": "^5.3.10",
"typescript": "^5.4.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-plugin-replace": "^1.2.0"
}
}