-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 770 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 770 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
{
"name": "plex-oauth",
"version": "2.1.0",
"description": "Small library to handle simple OAuth with Plex",
"repository": {
"url": "https://github.com/Dmbob/plex-oauth"
},
"main": "build/src/index.js",
"scripts": {
"prepublishOnly": "npm run build && npm test",
"test": "jasmine-ts --config=jasmine.json",
"build": "tsc"
},
"keywords": [
"plex",
"oauth"
],
"author": "Bob Henley",
"license": "MIT",
"devDependencies": {
"@types/jasmine": "^3.6.10",
"@types/node": "^14.14.43",
"jasmine": "^3.7.0",
"jasmine-spec-reporter": "^5.0.2",
"jasmine-ts": "^0.3.3",
"ts-node": "^8.10.2",
"typescript": "^3.9.9"
},
"files": [
"build/**/*"
],
"dependencies": {
"axios": "^0.26.1"
}
}