forked from node-modules/compressing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.46 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.46 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
{
"name": "compressing",
"version": "1.3.1",
"description": "Everything you need for compressing and uncompressing",
"main": "index.js",
"scripts": {
"test": "egg-bin test",
"cov": "egg-bin cov",
"lint": "eslint .",
"ci": "npm run lint && npm run cov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/node-modules/compressing.git"
},
"keywords": [
"compress",
"uncompress",
"util",
"tgz",
"gzip",
"tar",
"zip",
"stream"
],
"files": [
"index.js",
"lib"
],
"author": "shaoshuai0102 <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/node-modules/compressing/issues"
},
"homepage": "https://github.com/node-modules/compressing#readme",
"dependencies": {
"flushwritable": "^1.0.0",
"get-ready": "^1.0.0",
"mkdirp": "^0.5.1",
"pump": "^3.0.0",
"streamifier": "^0.1.1",
"tar-stream": "^1.5.2",
"yauzl": "^2.7.0",
"yazl": "^2.4.2"
},
"devDependencies": {
"dir-compare": "^1.3.0",
"egg-bin": "^1.9.1",
"egg-ci": "^1.8.0",
"eslint": "^3.10.2",
"eslint-config-egg": "^3.2.0",
"mm": "^2.0.0",
"mz-modules": "^2.1.0",
"power-assert": "^1.4.2",
"rimraf": "^2.6.2",
"uuid": "^3.0.1"
},
"engines": {
"node": ">= 4.0.0"
},
"ci": {
"version": "4, 6, 8, 10",
"license": {
"year": "2017",
"fullname": "node-modules and other contributors"
}
}
}