-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
31 lines (31 loc) · 1004 Bytes
/
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
{
"name": "multi-video-frames",
"private": true,
"version": "0.0.0",
"description": "Play/view multiple video player streams in the same browser window by using iframes.",
"scripts": {
"start": "st --no-cache",
"test": "npm run --silent lint",
"lint": "npm run --silent eslint --",
"lint:fix": "npm run --silent eslint:fix --",
"eslint": "eslint ./resources/javascript",
"eslint:fix": "eslint --fix ./resources/javascript"
},
"author": "Joel Purra <[email protected]> (https://joelpurra.com/)",
"license": "AGPL-3.0",
"homepage": "https://joelpurra.com/projects/multi-video-frames/",
"devDependencies": {
"eslint": "^7.24.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-promise": "^4.3.1",
"pre-commit": "^1.2.2",
"st": "^2.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joelpurra/multi-video-frames.git"
},
"bugs": {
"url": "https://github.com/joelpurra/multi-video-frames/issues"
}
}