-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.01 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
42
43
44
45
{
"name": "signalz",
"version": "1.1.4",
"description": "A Node.js event emitter to be used across multiple projects",
"main": "./dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/YahiaElramal/signalz.git"
},
"keywords": [
"events",
"eventemitter",
"signals",
"cross-project"
],
"author": "Mawlicious",
"license": "MIT",
"bugs": {
"url": "https://github.com/YahiaElramal/signalz/issues"
},
"homepage": "https://github.com/YahiaElramal/signalz#readme",
"dependencies": {
"events": "^3.3.0",
"firebase-admin": "^9.9.0",
"promise-timeout": "^1.3.0"
},
"devDependencies": {
"@types/events": "^3.0.0",
"@types/node": "*",
"@types/promise-timeout": "^1.3.0"
},
"exports": {
".": [
{
"require": "./dist/index.js",
"import": "./esm/signalz.mjs"
},
"./dist/index.js"
],
"./esm": "./esm/signalz.mjs"
}
}