-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 930 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 930 Bytes
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
{
"name": "notification-handler",
"version": "1.0.0",
"description": "Notification handler for Pi-Eye",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"scripts": {
"lint": "eslint ./**/*.ts",
"build": "tsc -b",
"coverage": "nyc npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pi-Eye/notification-handler.git"
},
"author": "Bwu1324",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Pi-Eye/notification-handler/issues"
},
"homepage": "https://github.com/Pi-Eye/notification-handler#readme",
"devDependencies": {
"@types/express": "^4.17.14",
"@types/node": "^18.11.9",
"@types/nodemailer": "^6.4.6",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"eslint": "^8.27.0",
"typescript": "^4.8.4"
},
"dependencies": {
"events": "^3.3.0",
"nodemailer": "^6.8.0",
"typed-emitter": "^2.1.0"
}
}