-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 898 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
31
32
33
34
35
36
37
38
39
40
{
"name": "typed-event-emitter",
"version": "3.0.0",
"description": "Alternative event emitter for JavaScript and TypeScript.",
"scripts": {
"prepare": "tsc",
"test": "mocha -r ts-node/register *.spec.ts"
},
"keywords": [
"event-emitter",
"events",
"typescript",
"listener",
"trigger",
"event",
"emitter"
],
"author": "Simon \"Tenry\" Burchert",
"homepage": "https://github.com/tenry92/typed-event-emitter",
"repository": {
"type": "git",
"url": "https://github.com/tenry92/typed-event-emitter.git"
},
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"@types/sinon": "^10.0.2",
"chai": "^4.3.4",
"mocha": "^9.1.1",
"sinon": "^11.1.2",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
},
"files": [
"index.js",
"index.d.ts",
"README.md"
]
}