-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.35 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
{
"name": "vlc-client",
"description": "Node HTTP client/remote implementation to control VLC with simple function calls using VLC's own HTTP interface",
"version": "1.1.1",
"private": false,
"main": "dist/index.js",
"scripts": {
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register --timeout 20000 'test/**/*.test.ts'",
"clean-trash": "rm dist/Core.* dist/Playlist.* dist/Spawner.* ; rm -rf dist/src dist/test"
},
"author": "Alexandru Cancescu",
"license": "MIT",
"homepage": "https://github.com/alexandrucancescu/node-vlc-client",
"repository": {
"type": "git",
"url": "https://github.com/alexandrucancescu/node-vlc-client"
},
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"keywords": [
"node",
"vlc",
"client",
"vlc-client",
"vlc-http",
"vlc-lue",
"vlc-client",
"vlc-remote",
"vlc-control",
"remote-vlc",
"vlc-http",
"http-vlc"
],
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/express": "^4.17.7",
"@types/fs-extra": "^9.0.1",
"@types/mocha": "^8.0.3",
"@types/node": "^14.0.27",
"chai": "^4.2.0",
"docts": "^0.2.0",
"fs-extra": "^9.0.1",
"is-ci": "^2.0.0",
"mocha": "^8.1.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"dependencies": {
"phin": "^3.6.1"
}
}