-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.03 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
{
"name": "eventemitter-wrapper",
"version": "2.0.1",
"description": "Control event groups",
"type": "commonjs",
"main": "./index.js",
"module": "./module.mjs",
"exports": {
".": {
"import": "./module.mjs",
"require": "./index.js"
}
},
"scripts": {
"test": "mocha -t 10000 --recursive tests/**/*.mjs --check-leaks --exit",
"test-parallel": "mocha -t 10000 --recursive tests/**/*.mjs --check-leaks --parallel --exit",
"test-watch": "mocha -t 10000 --recursive tests/**/*.mjs --check-leaks --watch --watch-files \"*.js,*.mjs,tests/**/*.mjs\" --bail --full-trace --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jashepp/eventemitter-wrapper.git"
},
"author": "[email protected]",
"license": "MIT",
"keywords": [
"event",
"eventemitter",
"wrapper"
],
"devDependencies": {
"chai": "^5.1.1",
"mocha": "^10.7.3",
"sinon": "^19.0.2",
"sinon-chai": "^4.0.0",
"underscore": "^1.13.7"
},
"engines": {
"node": ">=16"
}
}