This repository has been archived by the owner on Feb 20, 2024. It is now read-only.
forked from aaani/WebSDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 4.16 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
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
{
"name": "phenix-web-sdk",
"version": "2023.0.8",
"license": "Apache-2.0",
"private": false,
"main": "dist/phenix-web-sdk.js",
"repository": {
"type": "git",
"url": "https://github.com/PhenixRTS/WebSDK.git"
},
"scripts": {
"preinstall": "npm prune",
"test": "karma start test/karma.conf.ci.js",
"test-browsers": "karma start test/karma.conf.browsers.js",
"test-continuous": "karma start test/karma.conf.js",
"coverage": "karma start test/karma.conf.coverage.js",
"check-coverage": "istanbul check-coverage --config=test/coverage.yml",
"webpack": "webpack",
"grunt": "grunt -d",
"bundle": "grunt build -d",
"postbundle": "npm run add-copyright",
"ci-test": "node scripts/ci-test.js",
"ci-bundle": "node scripts/ci-bundle.js",
"ci-coverage": "node scripts/ci-coverage.js",
"ci-deploy": "node scripts/ci-deploy.js",
"preci-deploy": "npm run ci-bundle",
"start": "node example/httpserver.js",
"lint": "eslint --cache ./",
"lint:fix": "eslint --fix ./",
"prepack": "npm run bundle",
"add-copyright": "eslint --no-eslintrc --no-ignore --ignore-path .gitignore --plugin notice --parser-options=ecmaVersion:9 --parser-options=sourceType:module --rule \"notice/notice: [2, {mustMatch: Copyright .* Phenix Real Time Solutions. Inc[.],templateFile: copyright.tmpl}]\" ./dist --fix",
"postadd-copyright": "npm run check-ecma-version",
"check-ecma-version": "eslint --no-eslintrc --no-ignore --parser-options=ecmaVersion:5 --parser-options=sourceType:script ./dist/*-web-*.js",
"deploy-examples:production": "node scripts/deploy-examples-production.js",
"deploy-examples:staging": "node scripts/deploy-examples-staging.js",
"version": "node scripts/version.js",
"publish": "clean-publish"
},
"files": [
"dist/"
],
"engines": {
"node": "^16.15.0"
},
"devDependencies": {
"animate.css": "4.1.0",
"bootstrap": "3.4.1",
"bootstrap-notify": "3.1.3",
"case-sensitive-paths-webpack-plugin": "2.3.0",
"chai": "4.2.0",
"clean-publish": "4.0.1",
"del": "5.1.0",
"eslint": "7.4.0",
"eslint-plugin-mocha": "7.0.1",
"eslint-plugin-notice": "0.9.10",
"eslint-plugin-requirejs": "4.0.0",
"express": "4.17.1",
"fingerprintjs2": "2.1.0",
"grunt": "1.2.1",
"grunt-cli": "1.3.2",
"grunt-contrib-clean": "2.0.0",
"grunt-contrib-copy": "1.0.0",
"grunt-sed": "github:amyroniuk/grunt-sed#e6cdd5f8cef506e29b53eb620ca2c0ed7672481e",
"grunt-webpack": "3.1.3",
"grunt-zip": "0.18.2",
"inspectpack": "4.5.2",
"istanbul": "0.4.5",
"istanbul-instrumenter-loader": "3.0.1",
"jquery": "3.5.1",
"karma": "4.3.0",
"karma-chrome-launcher": "3.1.0",
"karma-cli": "2.0.0",
"karma-coverage": "2.0.2",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-edge-launcher": "0.4.2",
"karma-firefox-launcher": "1.3.0",
"karma-ie-launcher": "1.0.0",
"karma-mocha": "2.0.1",
"karma-opera-launcher": "1.0.0",
"karma-safari-launcher": "1.0.0",
"karma-spec-reporter": "0.0.32",
"karma-stacktrace": "2.0.2",
"karma-webpack": "4.0.2",
"lodash": "4.17.19",
"long": "4.0.0",
"mocha": "8.0.1",
"moment": "2.27.0",
"phenix-web-application-activity-detector": "2020.0.2",
"phenix-web-assert": "2020.0.2",
"phenix-web-closest-endpoint-resolver": "2020.0.3",
"phenix-web-detect-browser": "2021.0.1",
"phenix-web-disposable": "2020.0.2",
"phenix-web-event": "2020.0.2",
"phenix-web-global": "2020.0.2",
"phenix-web-http": "2020.0.2",
"phenix-web-lodash-light": "2020.0.4",
"phenix-web-logging": "2020.0.2",
"phenix-web-network-connection-monitor": "2020.0.2",
"phenix-web-observable": "2020.0.2",
"phenix-web-player": "2020.0.2",
"phenix-web-proto": "2020.0.3",
"phenix-web-reconnecting-websocket": "2020.0.2",
"puppeteer": "5.1.0",
"requirejs": "2.3.6",
"shaka-player": "2.5.13",
"sinon": "9.0.2",
"sinon-chai": "3.5.0",
"uglifyjs-webpack-plugin": "2.2.0",
"webpack": "4.44.1",
"webpack-cli": "3.3.12",
"webpack-merge": "5.0.9",
"webrtc-adapter": "4.2.1",
"ws": "7.3.1",
"xmlhttprequest": "1.8.0"
}
}