-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.94 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.94 KB
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
82
83
84
85
86
87
88
{
"name": "@typhonjs-utils/file-util",
"description": "Provides several utility functions for working with the file system including a TyphonJS plugin.",
"version": "0.3.0",
"author": "Michael Leahy <support@typhonjs.io> (https://github.com/typhonrt)",
"type": "module",
"exports": {
".": {
"browser": {
"types": "./types/index-browser.d.ts",
"import": "./src/functions-browser.js"
},
"node": {
"types": "./types/index.d.ts",
"import": "./src/index.js"
},
"default": {
"types": "./types/index.d.ts",
"import": "./src/index.js"
}
},
"./plugin": {
"types": "./types/index-plugin.d.ts",
"browser": "./src/plugin-browser.js",
"node": "./src/plugin.js",
"default": "./src/plugin.js"
},
"./package.json": "./package.json"
},
"contributors": [
"Michael Leahy <support@typhonjs.io> (https://github.com/typhonrt)"
],
"dependencies": {
"pathe": "^2"
},
"devDependencies": {
"@types/node": "^24.1.0",
"@typhonjs-build-test/node-browser": "^0.0.5",
"@typhonjs-typedoc/typedoc-pkg": "^0.4.1",
"rollup": "^4.60.0"
},
"engines": {
"node": ">=18"
},
"files": [
"/npm-shrinkwrap.json",
"/src",
"/types"
],
"homepage": "https://github.com/typhonjs-node-utils/file-util#readme",
"keywords": [
"typhonjs",
"utils",
"file"
],
"typedocOptions": {
"dmtLinksService": {
"Discord": "https://typhonjs.io/discord/",
"GitHub": "https://github.com/typhonjs-node-utils/file-util",
"NPM": "https://www.npmjs.com/package/@typhonjs-utils/file-util"
},
"externalSymbolLinkMappings": {
"@types/node": {
"Stream.Readable": "https://nodejs.org/api/stream.html#class-streamreadable",
"Stream.Writable": "https://nodejs.org/api/stream.html#class-streamwritable"
}
},
"projectDocuments": [
"./CHANGELOG.md"
]
},
"license": "MPL-2.0",
"repository": {
"url": "git+https://github.com/typhonjs-node-utils/file-util.git"
},
"bugs": "https://github.com/typhonjs-node-utils/file-util/issues",
"apidocs": "https://typhonjs-node-utils.github.io/file-util/",
"scripts": {
"eslint": "eslint .",
"docs": "typedoc-pkg --api-link es",
"prepublishOnly": "npm run eslint && npm run types && npm run test-node && npm run test-browser",
"pretest-browser": "rollup --config rollup.config.browser-test.js",
"posttest-browser": "nyc report --exclude-after-remap=true --reporter=lcov --reporter=text-summary --report-dir=coverage-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/functions-browser.js -o types/index-browser.d.ts && esm-d-ts gen src/plugin.js -o types/index-plugin.d.ts"
}
}