-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathpackage.json
42 lines (42 loc) · 942 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
38
39
40
41
42
{
"name": "plex-api",
"version": "4.0.0",
"description": "Simple wrapper for querying against HTTP API on the Plex Media Server",
"main": "lib/api.js",
"directories": {
"test": "test"
},
"dependencies": {
"plex-api-credentials": "^3.0.0",
"plex-api-headers": "1.1.0",
"request": "2.72.0",
"uuid": "2.0.2",
"xml2js": "0.4.16"
},
"devDependencies": {
"expect.js": "^0.3.1",
"jscs": "^3.0.0",
"jshint": "^2.8.0",
"mocha": "^2.5.0",
"nock": "^8.0.0",
"proxyquire": "^1.7.3",
"sinon": "^1.17.2"
},
"scripts": {
"test": "jshint lib/* && jscs lib/* && mocha test/*-test.js",
"test:watch": "mocha -w test/*-test.js"
},
"files": [
"lib"
],
"repository": "git://github.com/phillipj/node-plex-api",
"keywords": [
"plex",
"api"
],
"engines": {
"node": ">=4.0"
},
"author": "Phillip Johnsen <[email protected]>",
"license": "MIT"
}