-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1001 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
43
44
45
{
"name": "plex-wrapper",
"version": "1.1.3",
"description": "Plex.tv API made easy",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"version": "npm run && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rasmusbuchholdt/plex-wrapper.git"
},
"keywords": [
"plex",
"plex.tv",
"api",
"users",
"server",
"invite"
],
"author": "Rasmus Buchholdt",
"license": "MIT",
"bugs": {
"url": "https://github.com/rasmusbuchholdt/plex-wrapper/issues"
},
"homepage": "https://github.com/rasmusbuchholdt/plex-wrapper#readme",
"devDependencies": {
"@types/node": "^12.11.1",
"typescript": "^3.6.4"
},
"files": [
"lib/**/*",
"README.md"
],
"dependencies": {
"promise": "^8.0.3",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"xml2js": "^0.4.22"
}
}