-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 902 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
41
{
"name": "@midwayjs/event-bus",
"version": "1.11.1",
"description": "Midway event bus",
"main": "dist/index",
"typings": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc",
"test": "NODE_DEBUG=midway* jest --runInBand",
"cov": "jest --coverage",
"lint": "mwts lint",
"lint:fix": "mwts fix"
},
"keywords": [
"midway",
"event-bus"
],
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"engines": {
"node": ">=12.11.0"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.2.0",
"@types/node": "^14.18.32",
"benchmark": "^2.1.4",
"jest": "^29.2.2",
"mwts": "^1.3.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"author": "Harry Chen <[email protected]>",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/midwayjs/hub.git"
}
}