-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.2 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.2 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
{
"name": "plexcord",
"version": "1.0.0",
"description": "a multi-chat-client bot that talks to a plex db",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "node-dev --no-deps --respawn index.js",
"test": "npm run lint & npm run mocha",
"mocha": "./node_modules/mocha/bin/mocha -u bdd -R spec --recursive --colors --timeout 30000",
"lint": "./node_modules/.bin/eslint . --ext .js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scramble45/plexcord.git"
},
"keywords": [
"plex",
"discord",
"bot"
],
"author": "Rowan Hamilton",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/scramble45/plexcord/issues"
},
"homepage": "https://github.com/scramble45/plexcord#readme",
"dependencies": {
"async": "^3.1.1",
"basic-auth": "^2.0.1",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.4",
"discord.js": "^11.5.1",
"express": "^4.17.1",
"helmet": "^3.21.2",
"lodash": "^4.17.15",
"morgan": "^1.9.1",
"sqlite3": "^4.1.1"
},
"devDependencies": {
"chai": "^4.2.0",
"debug": "^4.1.1",
"eslint": "^6.8.0",
"mocha": "^7.0.0",
"node-dev": "^4.0.0"
}
}