-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.16 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
{
"name": "EventDispatcher",
"version": "3.2.0",
"license": "MIT",
"author": "yaquawa",
"bugs": {
"url": "https://github.com/yaquawa/EventDispatcher/issues"
},
"homepage": "https://github.com/yaquawa/EventDispatcher#readme",
"keywords": [
"EventEmitter",
"Events",
"emit",
"emitter",
"event",
"pub/sub",
"publish",
"reactor",
"subscribe"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=14"
},
"scripts": {
"dev": "npm run build -- --watch",
"build": "rm -rf dist && tsup src/index.ts --sourcemap --dts --format cjs,esm",
"prepublishOnly": "npm run build",
"release": "npx git-ensure -a && npx bumpp --commit --tag --push",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.4",
"ts-mixer": "^5.4.0",
"ts-node": "^9.1.1",
"tslib": "^2.2.0",
"tsup": "^4.11.1",
"typescript": "^4.2.3"
}
}