forked from xafans/flare
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.09 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.09 KB
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
{
"name": "@xafans/flare",
"type": "module",
"version": "0.1.0",
"description": "Blazing fast event aggregator for JavaScript & TypeScript.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest --verbose --coverage",
"format": "prettier --write \"src/**/*.(js|ts)\"",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"jest": "^30.0.5",
"prettier": "^3.6.2",
"ts-jest": "^29.4.1",
"typescript": "^5.9.2"
},
"files": [
"dist"
],
"license": "MIT",
"author": "Xafans",
"keywords": [
"event",
"aggregator",
"pubsub",
"pub-sub",
"pubsub",
"pub-sub",
"event-emitter",
"eventemitter",
"event-emitter",
"eventemitter",
"typescript",
"javascript"
],
"homepage": "https://github.com/xafans/flare#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/xafans/flare.git"
},
"bugs": {
"url": "https://github.com/xafans/flare/issues"
}
}