-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.88 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
{
"name": "event-dispatching",
"version": "0.0.6",
"description": "Dispatching and listening for application events in Typescript",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"typings": "./dist/index.d.ts",
"files": [
"./dist"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=14.18.1"
},
"homepage": "https://github.com/mduvernon/event-dispatching",
"url": "https://github.com/mduvernon/event-dispatching",
"email": "manuel.duvernon@gmail.com",
"repository": {
"type": "git",
"url": "git+https://github.com/mduvernon/event-dispatching.git"
},
"author": "mduvernon <manuel.duvernon@gmail.com>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/mduvernon/event-dispatching/issues"
},
"tags": [
"typescript",
"event-dispatcher",
"event-dispatching",
"event-handler",
"inversify"
],
"scripts": {
"build": "tsc --project tsconfig.bundle.json --newLine LF",
"dev": "tsc -w --project tsconfig.bundle.json --newLine LF",
"test": "jest --maxWorkers=4",
"test:unit:watch": "jest --maxWorkers=4 --watch",
"test:unit:file": "jest --no-cache --maxWorkers=4",
"test:unit:file:watch": "jest --no-cache --maxWorkers=4 --watch",
"prettify": "prettier --write ./src"
},
"keywords": [
"typescript",
"event-dispatcher",
"event-dispatching",
"event-subscriber",
"event-handler",
"inversify"
],
"dependencies": {
"inversify": "6.0.2",
"rxjs": "7.8.1",
"reflect-metadata": "0.1.13"
},
"devDependencies": {
"@types/node": "20.6.3",
"awesome-typescript-loader": "5.2.1",
"prettier": "1.15.2",
"rimraf": "4.1.2",
"ts-node": "10.7.0",
"tslint": "5.11.0",
"tslint-config-prettier": "1.16.0",
"tslint-loader": "3.5.4",
"tslint-microsoft-contrib": "5.2.1",
"typescript": "5.2.2",
"tslib": "^2.5.0"
}
}