forked from Jashepp/eventemitter-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.12 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
41
{
"name": "@audc/eventemitter-wrapper",
"version": "2.0.2",
"description": "Control event groups",
"type": "commonjs",
"main": "./index.js",
"module": "./module.mjs",
"exports": {
".": {
"import": "./module.mjs",
"require": "./index.js",
"types": "./index.d.ts"
}
},
"scripts": {
"test": "mocha -t 10000 --recursive tests/**/*.js --check-leaks --use_strict --exit",
"test-parallel": "mocha -t 10000 --recursive tests/**/*.js --check-leaks --use_strict --parallel --exit",
"test-watch": "mocha -t 10000 --recursive tests/**/*.js --check-leaks --use_strict --watch --watch-files \"*.js,*.mjs,tests/**/*.js\" --bail --full-trace --trace-deprecation --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jashepp/eventemitter-wrapper.git"
},
"author": "unchosen.aus@gmail.com",
"license": "MIT",
"keywords": [
"event",
"eventemitter",
"wrapper"
],
"devDependencies": {
"chai": "^4.3.8",
"mocha": "^10.2.0",
"sinon": "^16.0.0",
"sinon-chai": "^3.7.0",
"underscore": "^1.13.6"
},
"engines": {
"node": ">=16"
}
}