forked from atom/node-ls-archive
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 947 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 947 Bytes
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
{
"name": "@pulsar-edit/ls-archive",
"description": "A package for listing and reading files in archive files",
"version": "2.0.0",
"licenses": "MIT",
"keywords": [
"ls",
"zip",
"gzip",
"tar",
"unzip",
"gunzip",
"archive",
"archives",
"uncompress"
],
"author": {
"name": "Kevin Sawicki",
"email": "kevin@github.com"
},
"repository": {
"type": "git",
"url": "https://github.com/pulsar-edit/node-ls-archive.git"
},
"bugs": {
"url": "https://github.com/pulsar-edit/node-ls-archive/issues"
},
"main": "./src/ls-archive.js",
"bin": {
"lsa": "./bin/lsa"
},
"devDependencies": {
"jasmine-focused": "1.x"
},
"scripts": {
"test": "jasmine-focused --captureExceptions spec"
},
"dependencies": {
"async": "^3.2.6",
"colors": "^1.4.0",
"optimist": "^0.6.1",
"tar": "^7.5.9",
"unbzip2-stream": "^1.4.3",
"yauzl": "^3.2.0"
}
}