-
Notifications
You must be signed in to change notification settings - Fork 5.7k
/
package.json
40 lines (40 loc) · 1.12 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
{
"name": "webrtc-samples",
"private": true,
"version": "1.0.0",
"description": "Project checking for WebRTC GitHub samples repo",
"keywords": [
"webrtc"
],
"homepage": "https://webrtc.github.io/samples/",
"bugs": {
"url": "https://github.com/webrtc/samples/issues"
},
"license": "BSD-3-Clause",
"author": "The WebRTC project authors",
"repository": {
"type": "git",
"url": "https://github.com/webrtc/samples.git"
},
"scripts": {
"start": "http-server . -c-1",
"test": "npm run eslint && npm run stylelint",
"eslint": "eslint 'test/**.js' 'src/content/**/*.js'",
"jest": "node test/download-browsers.js && jest --testTimeout 5000 --maxWorkers=1 src/content/",
"stylelint": "stylelint 'src/**/*.css'"
},
"eslintIgnore": [
"'**/third_party/*.js'"
],
"devDependencies": {
"@puppeteer/browsers": "^2.2.0",
"eslint": "^8.9.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-jest": "^27.4.0",
"http-server": "^14.1.0",
"jest": "^29.7.0",
"selenium-webdriver": "^4.19.0",
"stylelint": "^14.5.3",
"stylelint-config-recommended": "^7.0.0"
}
}