-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
64 lines (64 loc) · 1.71 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
{
"name": "@resreq/event-hub",
"version": "1.6.0",
"description": "This is a minimalist event hub.",
"main": "dist/index.js",
"type": "module",
"types": "dist/types/index.d.ts",
"scripts": {
"dev": "tsc --watch",
"build": "npm run clean && tsc",
"test": "vitest",
"tsc": "tsc --noEmit",
"lint": "eslint src __tests__ --ext .js,.ts --cache --fix",
"clean": "rm -rf dist",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/molvqingtai/event-hub.git"
},
"keywords": [
"event-hub",
"event-bus",
"bus",
"hub",
"event",
"emitter",
"trigger",
"dispatch",
"listener"
],
"author": "molvqingtai",
"license": "MIT",
"bugs": {
"url": "https://github.com/molvqingtai/event-hub/issues"
},
"homepage": "https://github.com/molvqingtai/event-hub#readme",
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"@vitest/coverage-c8": "^0.28.4",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"prettier": "^2.8.4",
"semantic-release": "^20.1.0",
"typescript": "^4.9.5",
"vitest": "^0.28.4"
},
"publishConfig": {
"access": "public"
}
}