This repository has been archived by the owner on Dec 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.46 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
{
"name": "magistercalendar",
"version": "0.0.4",
"description": "Intergrate Magister with Google Calendar.",
"main": "src/app.js",
"scripts": {
"start": "node .",
"start:silent": "node . --silent",
"start:repeat": "while true; do node . --silent && node -e 'process.stdout.clearLine();process.stdout.cursorTo(0);process.stdout.write(`Updated at ${new Date().toLocaleString(\"nl-NL\")}`);' && sleep 900; done",
"test": "echo \"Error: no test specified\" && exit 1",
"init": "node scripts/setup.js",
"setup": "echo '\\x1B[38;2;255;165;0m[WARNING]\\x1B[39m \\x1B[90msetup is deprecated, use init instead\\x1B[39m\\n' && node scripts/setup.js",
"authorize": "node scripts/authorize.js",
"bump": "node scripts/bump.js",
"lint": "./node_modules/.bin/eslint .",
"lint:fix": "./node_modules/.bin/eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/robincunningham2/MagisterCalendar.git"
},
"author": "Robin Cunningham",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/robincunningham2/MagisterCalendar/issues"
},
"homepage": "https://github.com/robincunningham2/MagisterCalendar#readme",
"dependencies": {
"chalk": "^4.1.2",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"googleapis": "^84.0.0",
"got": "^11.8.2",
"tough-cookie": "^4.0.0",
"url": "^0.11.0"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-google": "^0.14.0"
}
}