-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.01 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.01 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
{
"name": "event-emitter-plus",
"version": "0.0.1",
"description": "Stackable, Queueable and Promise-compatible Event Emitter",
"main": "index.js",
"scripts": {
"test": "node node_modules/mocha/bin/mocha --globals setImmediate,clearImmediate --check-leaks --colors -t 10000 --reporter spec $(find test/* -name '*.test.js')"
},
"repository": {
"type": "git",
"url": "https://github.com/findhit/event-emitter-plus.git"
},
"keywords": [
"eventemitter",
"event",
"emitter",
"stack-queue",
"findhit",
"findhit-util",
"promisable",
"promise",
"thenable",
"then",
"stackable",
"stack",
"queueable",
"queue",
"next-generation",
"plus"
],
"author": "José Moreira <jose.moreira@findhit.com>",
"license": "GPL v3",
"bugs": {
"url": "https://github.com/findhit/event-emitter-plus/issues"
},
"homepage": "https://github.com/findhit/event-emitter-plus",
"dependencies": {
"findhit-util": "^0.2.3",
"stack-queue": "0.0.4"
}
}