-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 858 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 858 Bytes
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
{
"name": "@ai-zen/event-bus",
"version": "1.1.0",
"description": "EventBus is a simple event management library for TypeScript.",
"main": "dist/EventBus.js",
"types": "dist/EventBus.d.ts",
"type": "module",
"files": [
"dist"
],
"scripts": {
"clean": "rimraf ./dist",
"prebuild": "npm run clean",
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "npm run build && cross-env NODE_OPTIONS=--experimental-vm-modules jest"
},
"repository": {
"type": "git",
"url": "https://github.com/ai-zen/event-bus.git"
},
"keywords": [
"event",
"event-bus",
"event bus"
],
"author": "LZQCN",
"license": "MIT",
"devDependencies": {
"@jest/globals": "^29",
"@types/jest": "^29",
"cross-env": "^7.0.3",
"jest": "^29",
"typescript": "^5.3.3",
"rimraf": "^5.0.5"
}
}