-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.26 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
{
"name": "remote-media",
"version": "1.0.0-beta.4",
"description": "A small app to control other client's media remotely.",
"main": "server.js",
"scripts": {
"test": "nyc mocha",
"testWithReport": "nyc --reporter=cobertura --reporter=text mocha test --reporter mocha-junit-reporter",
"start": "node server.js"
},
"author": "banksio",
"license": "ISC",
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.1",
"app-root-path": "^3.0.0",
"bootstrap": "^4.5.3",
"chalk": "^4.1.0",
"ejs": "^3.1.5",
"express": "^4.17.1",
"jquery": "^3.5.1",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.1",
"youtube-playlist": "^1.0.4"
},
"devDependencies": {
"eslint": "^7.15.0",
"mocha": "^8.2.1",
"mocha-junit-reporter": "^2.0.0",
"mock-socket": "^9.0.3",
"nyc": "^15.1.0",
"sinon": "^9.2.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/banksio/remote-media.git"
},
"bugs": {
"url": "https://github.com/banksio/remote-media/issues"
},
"homepage": "https://github.com/banksio/remote-media#readme",
"jshintConfig": {
"esversion": 10
},
"directories": {
"test": "test"
},
"keywords": [
"sync",
"media",
"YouTube",
"remote"
]
}