forked from phillipj/node-plex-control
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 809 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
32
33
34
35
36
37
{
"name": "plex-control",
"version": "2.0.1",
"description": "Controlling Plex clients through the Plex Media Server HTTP API",
"main": "lib/control.js",
"files": [
"lib"
],
"dependencies": {
"plex-api": "3.3.0",
"validator": "4.5.0",
"when": "3.7.7"
},
"devDependencies": {
"expect.js": "0.3.1",
"mocha": "2.3.4",
"sinon": "1.17.2"
},
"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": ">=0.10"
},
"author": "Phillip Johnsen <[email protected]>",
"license": "MIT"
}