-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.55 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
{
"name": "amazon-kinesis-video-streams-webrtc",
"version": "2.1.0",
"description": "Amazon Kinesis Video Streams WebRTC SDK for JavaScript.",
"repository": {
"type": "git",
"url": "https://github.com/awslabs/amazon-kinesis-video-streams-webrtc-sdk-js.git"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*",
"dist/**/*",
"examples/**/*",
"LICENSE.txt",
"NOTICE.txt"
],
"scripts": {
"integ-server": "ws -p 3000",
"test": "jest --runInBand",
"test-watch": "jest --watch",
"build-all": "npm run build-commonjs && npm run build-debug && npm run build-dist",
"build-commonjs": "tsc -p tsconfig.json",
"build-debug": "webpack --config webpack.debug.config.js",
"build-dist": "webpack --config webpack.dist.config.js",
"copy-examples-to-dist": "cp -r examples dist",
"develop": "webpack-dev-server --config webpack.dev.config.js",
"lint": "eslint 'src/**/*.{js,ts}'",
"release": "npm run lint && npm run test && npm run build-all && npm run copy-examples-to-dist"
},
"author": "Divya Sampath Kumar <divku@amazon.com>",
"license": "Apache-2.0",
"devDependencies": {
"@trust/webcrypto": "^0.9.2",
"@types/jest": "^24.0.23",
"@types/node": "^17.0.41",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"codecov": "^3.7.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-kvs-webrtc": "file:eslint",
"eslint-plugin-prettier": "^3.1.0",
"fork-ts-checker-webpack-plugin": "^4.1.2",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"license-webpack-plugin": "^4.0.0",
"prettier": "^1.18.2",
"ts-jest": "^29.1.0",
"ts-loader": "^6.0.4",
"typescript": "^4.9.5",
"webpack": "^5.0.0",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^4.0.0",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"isomorphic-webcrypto": "^2.3.6",
"jsdom": "^20.0.0",
"json-schema": "^0.4.0",
"json5": "^2.2.3",
"tslib": "^1.10.0",
"ua-parser-js": "^1.0.35",
"xml2js": "^0.5.0"
},
"overrides": {
"qs": "6.7.3",
"xml2js": "^0.5.0",
"json5": "^2.2.3",
"semver": ">=7.5.2",
"@types/babel__traverse": "7.18.2",
"@types/express-serve-static-core": "4.17.29"
}
}