forked from funsocietyirc/MrNodeBot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.73 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 2.73 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "mrnodebot",
"version": "1.0.15",
"description": "Your Friendly NodeJS IRC Bot",
"main": "index.js",
"scripts": {
"start": "node ./index.js",
"snyke-test": "snyk test",
"test": "snyk test && node_modules/mocha/bin/mocha test/**/*.js --reporter spec",
"test-watch": "./node_modules/mocha/bin/mocha test/**/*.js --reporter spec -w",
"generate-docs": "node_modules/.bin/jsdoc -c jsdoc.json",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect",
"prepare": "npm run snyk-protect"
},
"author": "Dave Richer <davericher@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/funsocietyirc/MrNodeBot"
},
"keywords": [
"irc",
"bot",
"fsociety",
"nodejs",
"framework",
"mrnodebot"
],
"engines": {
"node": ">=8.0.0",
"npm": ">=5.0.0"
},
"dependencies": {
"accounting-js": "^1.1.1",
"app-root-path": "^2.0.1",
"basic-auth": "^2.0.0",
"body-parser": "^1.18.3",
"bookshelf": "0.13.2",
"bot": "0.0.3",
"brace-expansion": "^1.1.11",
"cheerio": "^1.0.0-rc.2",
"clear-module": "^2.1.0",
"countdown": "^2.6.0",
"currency-symbol-map": "^4.0.4",
"express": "^4.16.3",
"express-fileupload": "^0.4.0",
"express-rate-limit": "^2.9.0",
"express-winston": "^2.5.1",
"file-type": "^8.0.0",
"freeport": "^1.0.5",
"funsociety-bookshelf-model-loader": "0.9.9",
"funsociety-irc-rss-feed-emitter": "1.0.12",
"funsocietyirc-client": "^0.1.13",
"gitlog": "^3.1.1",
"helmet": "^3.12.1",
"i18next": "^11.3.3",
"i18next-sync-fs-backend": "^1.1.0",
"irc-colors": "^1.4.2",
"is-promise": "^2.1.0",
"jsonwebtoken": "^8.3.0",
"knex": "^0.14.6",
"lodash": "^4.17.10",
"lodash-addons": "^2.0.1",
"minimist": "^1.2.0",
"moment": "^2.22.2",
"money": "^0.2.0",
"mysql2": "^1.5.3",
"named-routes": "2.0.6",
"nearest-neighbor": "^0.0.3",
"node-persist": "^3.0.1",
"node-schedule": "^1.3.0",
"pug": "^2.0.3",
"rand-token": "^0.4.0",
"random-js": "^1.0.4",
"request": "^2.87.0",
"request-promise-native": "1.0.5",
"scrypt": "^6.0.3",
"serve-favicon": "^2.5.0",
"shelljs": "^0.8.2",
"snyk": "^1.83.0",
"socket.io": "^2.1.1",
"textmining": "^1.0.3",
"twit": "^2.2.10",
"urijs": "^1.19.1",
"winston": "^2.4.2",
"winston-daily-rotate-file": "^3.2.1",
"winston-logio-mirror": "^0.3.0",
"x-ray": "2.3.2"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-bookshelf": "^1.0.0",
"chai-moment": "^0.1.0",
"ink-docstrap": "^1.3.0",
"jsdoc": "^3.5.4",
"mocha": "^5.2.0",
"sinon": "^5.1.0",
"sinon-chai": "^3.2.0"
},
"snyk": true
}