forked from atom/node-ls-archive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.29 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
{
"name": "js-archive",
"description": "A package for listing and reading files in archive files",
"version": "1.2.1",
"licenses": [
{
"type": "MIT",
"url": "http://github.com/jongross/node-ls-archive/raw/master/LICENSE.md"
}
],
"keywords": [
"ls",
"zip",
"gzip",
"tar",
"unzip",
"gunzip",
"archive",
"archives",
"uncompress"
],
"author": "Kevin Sawicki <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/jongross/node-ls-archive.git"
},
"bugs": {
"url": "https://github.com/jongross/node-ls-archive/issues"
},
"homepage": "http://jongross.github.io/node-ls-archive",
"main": "./lib/ls-archive.js",
"bin": {
"lsa": "./bin/lsa"
},
"devDependencies": {
"grunt": "~0.4.0",
"grunt-contrib-coffee": "~0.9.0",
"coffee-script": "~1.7.0",
"grunt-cli": "~0.1.6",
"grunt-shell": "~0.2.2",
"jasmine-focused": "1.x",
"grunt-coffeelint": "0.0.6",
"rimraf": "~2.1.4"
},
"scripts": {
"prepublish": "grunt",
"test": "grunt test"
},
"dependencies": {
"tar": "~0.1.17",
"optimist": "~0.5.2",
"async": "~0.2.9",
"colors": "~0.6.2",
"decompress-zip": "0.1.0",
"rimraf": "~2.2.6",
"tmp": "0.0.23"
},
"license": "ISC"
}