forked from webex/webrtc-media
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
144 lines (144 loc) · 4.14 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "webrtc-media-core",
"private": true,
"type": "module",
"workspaces": [
"packages/**",
"app",
"docs"
],
"scripts": {
"prepare": "husky install",
"g:prebuild": "yarn workspaces foreach -p run prebuild",
"g:clean": "yarn clean:global-cache",
"g:build": "yarn workspaces foreach -p --topological-dev -v run build",
"g:test": "yarn workspaces foreach -p run test",
"g:integration": "yarn workspaces foreach -tv run test:integration",
"g:lint": "yarn workspaces foreach -ptv run lint --color",
"g:typecheck": "yarn workspaces foreach -ptv run typecheck",
"g:lint-staged-files": "lint-staged --allow-empty",
"g:fix": "yarn workspaces foreach -ptv run fix",
"g:changeset": "changeset",
"docs": "rimraf ./docs && typedoc --out docs src"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/plugin-transform-runtime": "^7.18.9",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@jest/console": "^28.1.0",
"@microsoft/api-documenter": "^7.13.54",
"@microsoft/api-extractor": "^7.18.11",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/release-notes-generator": "^9.0.3",
"@types/babel__core": "^7",
"@types/babel__preset-env": "^7",
"@types/jest": "^28.1.8",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"@web/dev-server": "^0.1.30",
"babel-jest": "^29.0.1",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "3.3.0",
"dotenv": "^16.0.0",
"esbuild": "^0.14.50",
"eslint": "^8.11.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-tsdoc": "^0.2.14",
"husky": "^8.0.1",
"jest": "29.0.1",
"jest-environment-jsdom": "^29.0.1",
"jest-html-reporters": "^3.0.6",
"jest-junit": "^13.0.0",
"karma": "^6.3.12",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.3",
"karma-firefox-launcher": "^2.1.1",
"karma-junit-reporter": "^2.0.1",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-safari-launcher": "^1.0.0",
"karma-sauce-launcher": "^4.3.6",
"karma-typescript": "^5.5.2",
"karma-typescript-es6-transform": "^5.5.2",
"mocha": "^9.1.2",
"npm-run-all": "^4.1.5",
"plop": "^3.1.1",
"prettier": "^2.7.1",
"puppeteer": "^10.4.0",
"rimraf": "^3.0.2",
"rollup": "^2.70.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-polyfill-node": "^0.8.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.32.1",
"semantic-release": "^17.4.7",
"typedoc": "^0.22.15",
"typescript": "^4.7.4"
},
"resolutions": {
"karma-sauce-launcher/saucelabs": "7.1.3"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"scope-case": [
2,
"always",
[
"lower-case",
"pascal-case"
]
]
}
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/npm",
{
"npmPublish": true
}
],
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"docs",
"package.json",
"yarn.lock"
]
}
]
]
},
"packageManager": "[email protected]",
"dependencies": {
"jest-environment-node": "^29.0.1"
}
}