-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
41 lines (41 loc) · 888 Bytes
/
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
{
"name": "promise-events",
"version": "0.2.5",
"description": "A promise-based events emitter",
"author": "Yanick Rochon <yanick.rochon@gmail.com>",
"keywords": [
"promise",
"events",
"async",
"emitter"
],
"license": "MIT",
"main": "emitter.js",
"files": [
"emitter.js",
"emitter.d.ts",
"README.md",
"LICENSE"
],
"scripts": {
"test": "jest --detectOpenHandles --forceExit",
"test-cov": "npm run test -- --coverage"
},
"homepage": "https://github.com/yanickrochon/promise-events#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/yanickrochon/promise-events.git"
},
"bugs": {
"url": "https://github.com/yanickrochon/promise-events/issues"
},
"devDependencies": {
"jest": "^27.5.1"
},
"engines": {
"node": ">=8.0.0"
},
"jest": {
"testEnvironment": "node"
}
}