-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.37 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.37 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
{
"name": "@notify.events/nodejs",
"version": "1.2.3",
"description": "Node.js client for Notify.Events",
"main": "src/index.js",
"types": "src/index.d.ts",
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"typed": "npm run typedClean && tsc --build",
"typedClean": "rm -rf src/*.d.ts src/*.d.ts.map src/**/*.d.ts src/**/*.d.ts.map",
"publish": "npm run typed && npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/notify-events/nodejs.git"
},
"keywords": [
"notification",
"alert",
"teams",
"viber",
"telegram",
"signal",
"slack",
"sms",
"voice",
"call"
],
"author": "Notify.Events <support@notify.events>",
"contributors": [
{
"name": "Dmitriy Shadrunov",
"email": "ionian.wind@gmail.com"
},
{
"name": "Alex Kustov",
"email": "a.kustov@notify.events"
},
{
"name": "Oleg Matrozov",
"email": "o.matrozov@notify.events"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/notify-events/nodejs/issues"
},
"homepage": "https://github.com/notify-events/nodejs#readme",
"dependencies": {
"agentkeepalive": "^4.2.0",
"axios": "^1.7.9",
"form-data": "^4.0.1",
"validator": "^13.7.0"
},
"devDependencies": {
"@types/node": "^17.0.12",
"typescript": "^4.5.5"
}
}