-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.18 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
{
"name": "@typhonjs-utils/loader-module",
"description": "Provides loading of ES Modules via dynamic import for Node / browser and CJS via require on Node.",
"version": "0.1.0",
"author": "Michael Leahy <[email protected]> (https://github.com/typhonrt)",
"type": "module",
"contributors": [
"Michael Leahy <[email protected]> (https://github.com/typhonrt)"
],
"exports": {
".": {
"types": "./types/index.d.ts",
"browser": "./dist/browser/ModuleLoader.js",
"node": "./dist/node/ModuleLoader.js"
}
},
"devDependencies": {
"@typhonjs-build-test/esm-d-ts": "^0.2.0",
"@typhonjs-build-test/node-browser": "0.0.4",
"@typhonjs-typedoc/typedoc-pkg": "^0.0.2",
"@typhonjs-utils/package-json": "^0.7.0",
"import-meta-resolve": "^4.0.0",
"rollup": "^4"
},
"engines": {
"node": ">=16"
},
"files": [
"/npm-shrinkwrap.json",
"/dist",
"/src",
"/types"
],
"homepage": "https://github.com/typhonjs-node-utils/loader-module",
"keywords": [
"typhonjs",
"utils",
"loader",
"module"
],
"typedocOptions": {
"dmtLinksService": {
"Discord": "https://typhonjs.io/discord/",
"GitHub": "https://github.com/typhonjs-node-utils/loader-module",
"NPM": "https://www.npmjs.com/package/@typhonjs-utils/loader-module"
}
},
"license": "MPL-2.0",
"repository": "github:typhonjs-node-utils/loader-module",
"bugs": "https://github.com/typhonjs-node-utils/loader-module/issues",
"apidocs": "https://typhonjs-node-utils.github.io/loader-module/",
"scripts": {
"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 16000"
}
}