generated from MattIPv4/template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.02 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
{
"name": "memory-tar-create",
"version": "0.0.3",
"description": "Create gzipped tar archives in memory and download them as files or base64 strings.",
"main": "src/index.js",
"type": "module",
"scripts": {
"test": "npm run test:eslint && npm run test:script",
"test:eslint": "eslint '**/*.js'",
"test:eslint:fix": "npm run test:eslint -- --fix",
"test:script": "node --es-module-specifier-resolution=node test/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MattIPv4/memory-tar-create.git"
},
"keywords": [
"tar"
],
"author": "Matt (IPv4) Cowley",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/MattIPv4/memory-tar-create/issues"
},
"homepage": "https://github.com/MattIPv4/memory-tar-create#readme",
"dependencies": {
"Base64": "^1.1.0",
"gzip-js": "^0.3.2",
"tarts": "^1.0.0"
},
"devDependencies": {
"eslint": "^7.26.0"
}
}