forked from webrtc/samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.15 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
{
"name": "webrtc-samples",
"version": "1.0.0",
"description": "Project checking for WebRTC GitHub samples repo",
"keywords": [
"webrtc",
"demos",
"samples",
"javascript"
],
"homepage": "https://github.com/webrtc/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'",
"mocha": "mocha --timeout 5000 'src/content/**/test.js'",
"stylelint": "stylelint 'src/**/*.css'"
},
"eslintIgnore": [
"'**/third_party/*.js'"
],
"devDependencies": {
"chai": "^4.3.6",
"chromedriver": ">98.0.1",
"eslint": "^8.9.0",
"eslint-config-google": "^0.14.0",
"geckodriver": "^3.0.1",
"http-server": "^14.1.0",
"mocha": "^9.2.1",
"selenium-webdriver": "^4.1.1",
"stylelint": "^14.5.3",
"stylelint-config-recommended": "^7.0.0",
"travis-multirunner": "^5.0.1"
}
}