forked from jeromeetienne/microevent.js
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 748 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 748 Bytes
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
{
"name": "uevent",
"version": "3.0.0",
"description": "Event emitter micro library",
"type": "module",
"main": "index.js",
"types": "types.d.ts",
"files": [
"index.js",
"types.d.ts"
],
"author": {
"name": "Damien \"Mistic\" Sorel",
"email": "contact@git.strangeplanet.fr",
"homepage": "https://www.strangeplanet.fr"
},
"keywords": [
"events",
"emitter"
],
"license": "MIT",
"homepage": "https://github.com/mistic100/uEvent",
"repository": {
"type": "git",
"url": "git://github.com/mistic100/uEvent.git"
},
"bugs": {
"url": "https://github.com/mistic100/uEvent/issues"
},
"devDependencies": {
"mocha": "^11.1.0"
},
"scripts": {
"test": "mocha tests/*"
}
}