-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
69 lines (69 loc) · 1.63 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
60
61
62
63
64
65
66
67
68
69
{
"name": "compressing",
"version": "1.10.1",
"description": "Everything you need for compressing and uncompressing",
"main": "index.js",
"scripts": {
"contributor": "git-contributor",
"test:ts": "tsc -p ./test/fixtures/types/tsconfig.json",
"test:js": "egg-bin test --ts false",
"test": "npm run test:js && npm run test:ts",
"cov": "egg-bin cov --ts false",
"lint-fix": "eslint . --fix",
"lint": "eslint .",
"ci": "npm run lint && npm run test:ts && npm run cov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/node-modules/compressing.git"
},
"keywords": [
"compress",
"uncompress",
"util",
"tgz",
"gzip",
"tar",
"zip",
"stream"
],
"typings": "index.d.ts",
"files": [
"index.js",
"index.d.ts",
"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",
"iconv-lite": "^0.5.0",
"mkdirp": "^0.5.1",
"pump": "^3.0.0",
"streamifier": "^0.1.1",
"tar-stream": "^1.5.2",
"@eggjs/yauzl": "^2.11.0",
"yazl": "^2.4.2"
},
"devDependencies": {
"@types/mocha": "10",
"@types/node": "20",
"dir-compare": "^1.3.0",
"egg-bin": "6",
"eslint": "8",
"eslint-config-egg": "12",
"git-contributor": "2",
"mm": "^2.0.0",
"mz-modules": "^2.1.0",
"typescript": "5",
"uuid": "^3.0.1"
},
"engines": {
"node": ">= 4.0.0"
}
}