-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 865 Bytes
/
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
{
"name": "course-checker",
"version": "1.0.0",
"description": "This application will constantly check for an opening in a course you're waiting to join then text or email you about it.",
"main": "index.js",
"scripts": {
"start": "node index",
"eslint": "npx eslint . --ext .js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ChrisLubin/FAU-Course-Checker.git"
},
"author": "Christopher Lubin",
"license": "ISC",
"bugs": {
"url": "https://github.com/ChrisLubin/FAU-Course-Checker/issues"
},
"homepage": "https://github.com/ChrisLubin/FAU-Course-Checker#readme",
"devDependencies": {
"eslint": "^6.7.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.19.1"
},
"dependencies": {
"config": "^3.2.4",
"node-fetch": "^2.6.0",
"nodemailer": "^6.4.2"
}
}