This repository was archived by the owner on Oct 14, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.11 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.11 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
{
"name": "easy-add-event-listener",
"version": "1.1.6",
"description": "A simple wrapper around `EventTarget#addEventListener` returning a disposer",
"type": "module",
"main": "index.js",
"exports": {
".": {
"import": "./index.js",
"module-sync": "./index.js",
"node": "./index.js",
"require": "./index.js",
"default": "./index.js",
"types": "./index.d.ts"
},
"./shim": {
"import": "./shim",
"module-sync": "./shim",
"node": "./shim",
"require": "./shim",
"default": "./shim",
"types": "./shim.d.ts"
}
},
"scripts": {
"test": "node index.test.js && node shim.test.js && tsc",
"parse": "node cli.js",
"prepublishOnly": "node prepublish.js"
},
"keywords": [
"EventTarget",
"addEventListener",
"removeEventListener",
"dispose"
],
"author": "ShaMan123",
"repository": {
"type": "git",
"url": "git+https://github.com/ShaMan123/easyAddEventListener.git"
},
"license": "ISC",
"devDependencies": {
"@types/node": "^24.7.2",
"commander": "^14.0.1",
"typescript": "^5.9.3"
}
}