This repository has been archived by the owner on Aug 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.9 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "plugbot",
"version": "1.6.0",
"main": "bot.js",
"description": "A simple bot for plug.dj",
"author": "Fuechschen <johannes@diehl.io>",
"license": "MIT",
"scripts": {
"start": "node bot.js",
"test": "eslint \"**/*.js\""
},
"repository": {
"type": "git+https",
"url": "git+https://github.com/Fuechschen/plugbot.git"
},
"bugs": {
"url": "https://github.com/Fuechschen/plugbot/issues"
},
"dependencies": {
"bluebird": "^3.4.6",
"cron": "^1.1.1",
"fs": "0.0.1-security",
"ioredis": "^2.4.0",
"moment": "^2.17.0",
"mysql": "^2.12.0",
"path": "^0.12.7",
"plugged": "^2.6.2",
"request": "^2.79.0",
"sequelize": "^3.27.0",
"storyboard": "^2.3.0",
"string": "^3.3.3",
"underscore": "^1.8.3",
"validator": "^6.1.0"
},
"optionalDependencies": {
"cld": "^2.4.7",
"cleverbot-node": "^0.2.5",
"express": "^4.14.0",
"hiredis": "^0.5.0",
"morgan": "^1.7.0",
"pg": "^6.1.0",
"pg-hstore": "^2.3.2",
"pm2": "^2.1.5",
"sqlite3": "^3.1.8",
"tedious": "^1.14.0",
"uws": "^0.9.0",
"ws": "^1.1.1"
},
"eslintConfig": {
"env": {
"es6": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 6
},
"extends": "eslint:recommended",
"rules": {
"semi": [2, "always", {"omitLastInOneLineBlock": true}],
"no-unused-vars": [2, {"argsIgnorePattern": "^_", "caughtErrors": "none"}],
"no-control-regex": 0,
"global-require": 1,
"camelcase": 1,
"dot-notation": 1,
"no-else-return": 2,
"no-plusplus": 2,
"constructor-super": 2,
"prefer-arrow-callback": 1,
"object-shorthand": 2,
"object-curly-spacing": 1,
"object-property-newline": [1, {"allowMultiplePropertiesPerLine": true}],
"no-var": 2,
"no-inner-declarations": 0
}
},
"devDependencies": {
"eslint": "^3.13.0"
}
}