-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.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
{
"name": "@typhonjs-utils/file-archive",
"description": "Provides a utility for copying / writing files with archiving support.",
"version": "0.0.1",
"author": "Michael Leahy <support@typhonjs.io> (https://github.com/typhonrt)",
"type": "module",
"main": "src/index.js",
"module": "src/index.js",
"exports": {
".": "./src/index.js"
},
"contributors": [
"Michael Leahy <support@typhonjs.io> (https://github.com/typhonrt)"
],
"dependencies": {
"archiver": "^5.0.0",
"fs-extra": "^10.0.0"
},
"devDependencies": {
"@typhonjs-utils/build-test": "^0.1.0"
},
"engines": {
"node": ">=12.0.0"
},
"files": [
"/npm-shrinkwrap.json",
"/src"
],
"homepage": "https://github.com/typhonjs-node-utils/file-archive#readme",
"keywords": [
"typhonjs",
"utils",
"file",
"archive"
],
"license": "MPL-2.0",
"bugs": "https://github.com/typhonjs-node-utils/file-archive/issues",
"repository": "github:typhonjs-node-utils/file-archive",
"scripts": {
"eslint": "eslint .",
"prepublishOnly": "npm run test",
"test": "c8 --reporter=lcov --reporter=text-summary mocha -colors \"test/src/**/*.test.js\""
}
}