-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (77 loc) · 1.8 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@streetstrider/emitter",
"version": "1.4.0",
"description": "event emitter",
"author": "Strider <strange.transistor@gmail.com>",
"license": "ISC",
"homepage": "https://github.com/StreetStrider/emitter",
"repository": { "url": "https://github.com/StreetStrider/emitter.git", "type": "git" },
"bugs": { "url": "https://github.com/StreetStrider/emitter/issues" },
"main": "emitter.js",
"exports":
{
".": "./emitter.js",
"./slot": "./slot.js",
"./emitter": "./emitter.js",
"./multi": "./multi.js",
"./once": "./once.js",
"./when": "./when.js"
},
"files":
[
"emitter.d.ts",
"slot.js",
"slot.d.ts",
"multi.js",
"multi.d.ts",
"once.js",
"once.d.ts",
"when.js",
"when.d.ts"
],
"scripts":
{
"test": "npm run st && npm run ts && npm run unit && npm run cover",
"st": "eslint .",
"ts": "npm run tsc && npm run dts",
"tsc": "tsc",
"dts": "dtslint --expectOnly --localTs ./node_modules/typescript/lib test",
"unit": "mocha --check-leaks test/*.test.js",
"cover": "c8 -r text -r html npm run unit",
"perf": "node -r esm-wallaby perf/perf",
"leak": "node --inspect-brk test/leak",
"mini": "perf/mini emitter.js && perf/mini multi.js && perf/mini slot.js"
},
"devDependencies":
{
"eslint":
"9",
"outlander":
"StrangeTransistor/outlander#2e180cd927487da0f60dfbe0f793655b4aa0d851",
"typescript":
"5.6.2",
"dtslint":
"4.2.1",
"mocha":
"10",
"chai":
"4",
"c8":
"10",
"esbuild":
"0.24",
"benny":
"3.7",
"esm-wallaby":
"3.2.30",
"nanoevents":
"9"
},
"pnpm":
{
"overrides":
{
"@definitelytyped/utils": "0.1.4"
}
}
}