This repository was archived by the owner on Mar 15, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 3.01 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 3.01 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
{
"name": "revabot",
"description": "The last bot you'll ever need.",
"version": "1.0.0",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/Revadike/RevaBot"
},
"author": "anonymous node/sails user",
"contributors": [
"Revadike <revadike@outlook.com> (https://revadike.com)"
],
"license": "",
"keywords": [
"admin panel",
"autodiscover",
"bot",
"components",
"dashboard",
"database",
"ejs",
"event manager",
"events",
"extensions",
"node.js",
"orm",
"plugin manager",
"plugins",
"revabot",
"revadike",
"revaplugin",
"sails.js",
"sails",
"sailsjs",
"scheduler",
"task manager",
"task scheduler",
"tasks",
"web portal"
],
"dependencies": {
"@revaplugin/revaplugin": "^1.0.2",
"@sailshq/lodash": "^3.10.4",
"ansi-to-html": "^0.7.1",
"marked": "^3.0.4",
"node-cron": "2.0.3",
"npminstall": "^4.11.0",
"purdy": "^3.0.1",
"sails": "^1.4.3",
"sails-hook-apianalytics": "^2.0.5",
"sails-hook-organics": "^2.2.0",
"sails-hook-orm": "^3.0.2",
"sails-hook-sockets": "^2.0.1",
"sails-mongo": "^2.0.0",
"sails-mysql": "^1.0.1",
"sails-postgresql": "^2.0.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.14.7",
"eslint": "^7.30.0",
"grunt": "^1.4.1",
"htmlhint": "^0.15.1",
"lesshint": "^6.3.7",
"nodemon": "^2.0.12",
"sails-hook-grunt": "^4.0.1"
},
"scripts": {
"dev": "nodemon --signal SIGINT index.js && exit 0",
"start": "sails lift",
"test": "npm run lint && npm run custom-tests && echo 'Done.'",
"lint": "node ./node_modules/eslint/bin/eslint.js . --max-warnings=0 --report-unused-disable-directives && echo '✔ Your .js files look so good.' && ./node_modules/htmlhint/bin/htmlhint -c ./.htmlhintrc views/*.ejs && ./node_modules/htmlhint/bin/htmlhint -c ./.htmlhintrc views/**/*.ejs && ./node_modules/htmlhint/bin/htmlhint -c ./.htmlhintrc views/**/**/*.ejs && ./node_modules/htmlhint/bin/htmlhint -c ./.htmlhintrc views/**/**/**/*.ejs && ./node_modules/htmlhint/bin/htmlhint -c ./.htmlhintrc views/**/**/**/**/*.ejs && ./node_modules/htmlhint/bin/htmlhint -c ./.htmlhintrc views/**/**/**/**/**/*.ejs && ./node_modules/htmlhint/bin/htmlhint -c ./.htmlhintrc views/**/**/**/**/**/**/*.ejs && echo '✔ So do your .ejs files.' && ./node_modules/lesshint/bin/lesshint assets/styles/ --max-warnings=0 && echo '✔ Your .less files look good, too.'",
"custom-tests": "echo \"(No other custom tests yet.)\" && echo"
},
"engines": {
"node": "^16.2"
},
"bugs": {
"url": "https://github.com/Revadike/RevaBot/issues",
"email": "revadike@outlook.com"
},
"homepage": "https://github.com/Revadike/RevaBot"
}