-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.8 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@typhonjs-plugin/manager",
"description": "Provides a plugin manager & eventbus for Node and in the browser.",
"version": "0.1.2",
"author": "Michael Leahy <[email protected]> (https://github.com/typhonrt)",
"type": "module",
"imports": {
"#runtime/plugin/manager/*": "@typhonjs-plugin/manager/*",
"#runtime/util/loader-module": "@typhonjs-utils/loader-module",
"#runtime/util/object": "@typhonjs-utils/object"
},
"exports": {
".": {
"types": "./dist/manager/node/index.d.ts",
"node": "./dist/manager/node/index.js",
"browser": "./dist/manager/browser/index.js"
},
"./eventbus": {
"types": "./dist/eventbus/index.d.ts",
"import": "./dist/eventbus/index.js"
},
"./eventbus/buses": {
"types": "./dist/eventbus/buses/index.d.ts",
"import": "./dist/eventbus/buses/index.js"
},
"./src/manager": {
"import": "./src/manager/index.js"
},
"./package.json": "./package.json"
},
"contributors": [
"Michael Leahy <[email protected]> (https://github.com/typhonrt)"
],
"devDependencies": {
"@typhonjs-build-test/esm-d-ts": "^0.2.2",
"@typhonjs-build-test/node-browser": "^0.0.5",
"@typhonjs-build-test/rollup-plugin-pkg-imports": "^0.3.0",
"@typhonjs-plugin/eventbus": "^0.1.0",
"@typhonjs-typedoc/typedoc-pkg": "^0.0.3",
"@typhonjs-utils/loader-module": "^0.1.0",
"@typhonjs-utils/object": "^0.1.0",
"rollup": "^4"
},
"engines": {
"node": ">=14.18"
},
"files": [
"/dist",
"/src",
"/types"
],
"homepage": "https://github.com/typhonjs-node-plugin/manager",
"keywords": [
"typhonjs",
"plugin",
"manager"
],
"typedocOptions": {
"dmtLinksService": {
"Discord": "https://typhonjs.io/discord/",
"GitHub": "https://github.com/typhonjs-node-plugin/manager",
"NPM": "https://www.npmjs.com/package/@typhonjs-plugin/manager"
}
},
"license": "MPL-2.0",
"repository": "github:typhonjs-node-plugin/manager",
"bugs": "https://github.com/typhonjs-node-plugin/manager/issues",
"apidocs": "https://typhonjs-node-plugin.github.io/manager/",
"scripts": {
"checkJs": "esm-d-ts check src/manager/index.js",
"bundle": "rollup --config",
"docs": "typedoc-pkg --api-link esm",
"eslint": "eslint .",
"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",
"pretest-node": "npm run bundle",
"prepublishOnly": "npm run eslint && 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 10000"
}
}