-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.76 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "plex-webhooks",
"version": "0.1.6",
"description": "Server for receiving plex webhooks. Useful for automation or action related local scripting.",
"main": "./dist/lib/index.js",
"types": "./dist/lib/index.d.ts",
"scripts": {
"clean:dist": "rm -rf dist",
"clean:node_modules": "rm -rf node_modules",
"clean:all": "(npm run clean:node_modules) && (npm run clean:dist)",
"clean": "npm run clean:all",
"build:ts": "tsc --declaration",
"build:full": "(npm run clean:all) && (npm install) && (npm run build:ts)",
"build": "(npm run clean:dist) && (npm run build:ts)",
"lint": "eslint 'lib/**/*.{js,ts,tsx}' --quiet --fix",
"test": "./node_modules/.bin/jest --coverage"
},
"keywords": [
"plex",
"webhook",
"api",
"express"
],
"author": "Steve Harris <github@aetrix.com>",
"license": "MIT",
"dependencies": {
"@types/config": "0.0.36",
"@types/express": "^4.17.6",
"@types/fs-extra": "^9.0.1",
"@types/morgan": "^1.9.1",
"@types/multer": "^1.4.7",
"config": "^3.3.1",
"express": "^4.17.1",
"fs-extra": "^9.0.1",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"superagent": "^7.1.6",
"typescript": "^4.7.3",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/jest": "^28.1.1",
"@types/source-map-support": "^0.5.1",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^3.3.0",
"@typescript-eslint/parser": "^3.3.0",
"chai": "^4.2.0",
"eslint": "^7.3.0",
"jest": "^28.1.1",
"source-map-support": "^0.5.19",
"supertest": "^6.2.3",
"ts-jest": "^28.0.4",
"tslib": "^2.4.0"
},
"repository": {
"type": "git",
"url": "https://github.com/SHaTRO/plex-webhooks.git"
}
}