-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.16 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@typhonjs-plugin/eventbus",
"description": "Provides a flexible in process eventbus for Node and in the browser.",
"version": "0.2.0",
"author": "Michael Leahy <[email protected]> (https://github.com/typhonrt)",
"type": "module",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./src/index.js"
},
"./buses": {
"types": "./types/index-buses.d.ts",
"import": "./src/buses/index.js"
},
"./package.json": "./package.json"
},
"contributors": [
"Michael Leahy <[email protected]> (https://github.com/typhonrt)"
],
"devDependencies": {
"@typhonjs-build-test/esm-d-ts": "^0.3.0-next.9",
"@typhonjs-build-test/node-browser": "^0.0.5",
"@typhonjs-typedoc/typedoc-pkg": "^0.3.1",
"rollup": "^4.34.6"
},
"engines": {
"node": ">=18"
},
"files": [
"/src",
"/types"
],
"homepage": "https://github.com/typhonjs-node-plugin/eventbus#readme",
"keywords": [
"typhonjs",
"plugin",
"eventbus"
],
"typedocOptions": {
"dmtLinksService": {
"Discord": "https://typhonjs.io/discord/",
"GitHub": "https://github.com/typhonjs-node-plugin/eventbus",
"NPM": "https://www.npmjs.com/package/@typhonjs-plugin/eventbus"
}
},
"license": "MPL-2.0",
"repository": "github:typhonjs-node-plugin/eventbus",
"bugs": "https://github.com/typhonjs-node-plugin/eventbus/issues",
"apidocs": "https://typhonjs-node-plugin.github.io/eventbus/",
"scripts": {
"eslint": "eslint .",
"docs": "typedoc-pkg --api-link es",
"posttest-browser": "nyc report --exclude-after-remap=true --reporter=lcov --reporter=text-summary --report-dir=coverage-browser",
"pretest-browser": "rollup --config rollup.config.browser-test.js",
"prepublishOnly": "npm run eslint && npm run types && npm run test-node && npm run test-browser",
"test-browser": "node ./test/src/browser/run.js",
"test-node": "c8 --exclude-after-remap=true --reporter=lcov --reporter=text-summary mocha -colors \"test/src/node/**/*.test.js\" --timeout 16000",
"types": "esm-d-ts gen src/index.js -o types/index.d.ts && esm-d-ts gen src/buses/index.js -o types/index-buses.d.ts"
}
}