-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) Β· 1.56 KB
/
package.json
File metadata and controls
59 lines (59 loc) Β· 1.56 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
50
51
52
53
54
55
56
57
58
59
{
"name": "@sfast/pattern-emitter-ts",
"version": "0.3.0",
"description": "EventEmitter with RegExp pattern matching - fully tested, production-ready event system for Node.js and TypeScript",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"license": "MIT",
"author": "steadfast.tech",
"homepage": "https://github.com/sfast/pattern-emitter-ts#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/sfast/pattern-emitter-ts.git"
},
"bugs": {
"url": "https://github.com/sfast/pattern-emitter-ts/issues"
},
"keywords": [
"event emitter",
"eventemitter",
"regexp emitter",
"regex patterns",
"pattern matching",
"event patterns",
"typescript",
"events",
"emitter",
"middleware",
"routing",
"namespaces"
],
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.json",
"test": "jest --detectOpenHandles --forceExit",
"docs": "typedoc src/index.ts --out docs",
"check": "gts check",
"clean": "gts clean",
"fix": "gts fix",
"lint": "gts lint",
"prepare": "npm run build"
},
"devDependencies": {
"@types/chai": "^4.3.20",
"@types/events": "^3.0.3",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"chai": "^4.5.0",
"gts": "^5.3.1",
"jest": "^29.7.0",
"source-map-support": "^0.5.21",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.2",
"typedoc": "^0.27.5",
"typescript": "^5.7.2"
},
"overrides": {
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0"
}
}