forked from amazon-connect/amazon-connect-streams
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.42 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
{
"name": "amazon-connect-streams",
"version": "1.6.3",
"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": {
"gulp-test": "gulp test",
"release": "tsc && gulp",
"watch": "gulp watch",
"clean": "rm -rf build/ node_modules build package-lock.json",
"release-watch": "npm run release && npm run watch"
},
"author": "Amazon Web Services",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/aws/amazon-connect-streams/issues"
},
"homepage": "https://github.com/aws/amazon-connect-streams#readme",
"devDependencies": {
"chai": "^4.1.2",
"gulp": "^4.0.2",
"gulp-cli": "^2.0.1",
"gulp-concat": "^2.6.1",
"gulp-istanbul": "^1.1.3",
"gulp-jshint": "^2.1.0",
"gulp-mocha": "^7.0.2",
"gulp-rename": "^1.2.2",
"gulp-replace": "^1.0.0",
"gulp-rev": "^8.1.1",
"gulp-uglify": "^3.0.0",
"gulp-watch": "^5.0.1",
"jshint": "^2.9.7",
"mocha-jsdom": "^2.0.0",
"pump": "^3.0.0",
"sinon": "^9.0.0",
"typescript": "3.0.1"
}
}