forked from phillipj/node-plex-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.13 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
{
"name": "plex-api",
"version": "5.2.10",
"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.87.0",
"uuid": "2.0.2",
"xml2js": "0.4.16"
},
"devDependencies": {
"expect.js": "^0.3.1",
"mocha": "^4.0.1",
"nock": "^9.0.0",
"prettier": "1.1.0",
"proxyquire": "^1.7.3",
"sinon": "^1.17.2"
},
"scripts": {
"format": "npm run format:exec -- --write",
"format:exec": "prettier --single-quote --print-width=120 --tab-width=4 '{lib,test}/**/*.js'",
"test": "npm run test:lint && npm run test:unit",
"test:lint": "npm run format:exec -- --list-different",
"test:unit": "mocha test/*-test.js",
"test:watch": "npm run test:unit -- -w"
},
"files": [
"lib"
],
"repository": "git://github.com/phillipj/node-plex-api",
"keywords": [
"plex",
"api"
],
"engines": {
"node": ">=4.0"
},
"author": "Phillip Johnsen <[email protected]>",
"license": "MIT"
}