forked from primus/eventemitter3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.6 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
65
66
67
68
69
{
"name": "esm-itter",
"version": "0.3.0",
"description": "ESMitter is a fork of the popular EventEmitter3 with a focus on EcmaScript module syntax, TypeScript and modern tooling.",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"engines": {
"node": ">=16"
},
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"benchmark": "find benchmarks/run -name '*.js' -exec benchmarks/start.sh {} \\;",
"test": "vitest run",
"lint": "eslint . --ext .ts",
"prettier": "prettier --write .",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git://github.com/tillsanders/esm-itter.git"
},
"keywords": [
"EventEmitter",
"EventEmitter2",
"EventEmitter3",
"ESMitter",
"Events",
"addEventListener",
"addListener",
"emit",
"emits",
"emitter",
"event",
"once",
"pub/sub",
"publish",
"reactor",
"subscribe"
],
"author": "Till Sanders",
"license": "MIT",
"bugs": {
"url": "https://github.com/tillsanders/esm-itter/issues"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"@vitest/coverage-v8": "^1.4.0",
"eslint": "^8.57.0",
"prettier": "3.2.5",
"typescript": "^5.4.2",
"vitepress": "^1.0.1",
"vitest": "^1.4.0"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.13.0"
}
}