-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 815 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 815 Bytes
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
{
"name": "plex-control",
"version": "3.0.1",
"description": "Controlling Plex clients through the Plex Media Server HTTP API",
"main": "lib/control.js",
"files": [
"lib"
],
"dependencies": {
"plex-api": "^5.2.2",
"validator": "10.11.0",
"when": "^3.7.7"
},
"devDependencies": {
"expect.js": "^0.3.1",
"mocha": "^4.1.0",
"sinon": "^1.17.3"
},
"scripts": {
"test": "mocha test/bootstrapTests.js test/**/*-test.js",
"test-tdd": "mocha -w test/bootstrapTests.js test/**/*-test.js"
},
"repository": {
"type": "git",
"url": "git://github.com/phillipj/node-plex-control"
},
"keywords": [
"plex",
"api",
"control"
],
"engines": {
"node": ">=4.0"
},
"author": "Phillip Johnsen <phillip@lightweight.no>",
"license": "MIT"
}