-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 2.58 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "typescript-event-emitter",
"version": "2.0.3",
"description": "Versatile and feature-rich TypeScript library for event management, providing a solid foundation for building event-driven applications in TypeScript.",
"author": "Evaldas Laureckas",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"cpack": "npm pack",
"clogin": "npm login",
"cpublish": "npm publish",
"test": "mocha --config mocha.config.js",
"test:nyc": "nyc mocha --config mocha.config.js",
"test:watch": "mocha --config mocha.config.js --watch",
"build": "tsc",
"precommit": "npm run lint && npm run format",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write ."
]
},
"keywords": [
"EventEmitter",
"Events",
"addEventListener",
"addListener",
"emit",
"emits",
"emitter",
"event",
"once",
"subscribe",
"Typescrpt EventEmitter",
"Typescrpt Events Management",
"event handling",
"event system",
"event-driven programming",
"event dispatcher",
"event sourcing",
"publish-subscribe",
"event delegation",
"custom events",
"typescript events",
"typescript event emitter",
"typescript event handling",
"observable pattern",
"event pattern",
"event bus",
"type-safe events",
"event stream",
"event listener",
"typescript design patterns",
"typescript programming",
"async events",
"event registration",
"typescript reactive programming"
],
"bugs": {
"url": "https://github.com/piratuks/typescript-event-emitter/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/piratuks/typescript-event-emitter.git"
},
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.4",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"chai": "^4.3.10",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.0",
"lint-staged": "^15.2.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^3.1.0",
"sinon": "^19.0.2",
"ts-node": "^10.9.1",
"typescript": "^5.3.3"
},
"dependencies": {
"uuid": "^11.0.3"
}
}