-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
92 lines (92 loc) · 2.32 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "recursive-unzipper",
"version": "0.3.2",
"description": "",
"main": "index.js",
"bin": "dist/bin.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
},
"tsup": {
"entry": [
"src/index.ts",
"src/bin.ts"
],
"clean": true,
"dts": true,
"format": [
"cjs",
"esm"
]
},
"scripts": {
"testpack": "rm ./tmp/* -rf && npm pack --pack-destination=./tmp",
"test": "npx jest --debug",
"lint": "tsc --noEmit",
"compile:prod": "rm -r dist/* && npx tsup && ls -lha dist",
"prerelease": "npm run compile:prod",
"release": "npx release-it",
"run:dev": "ts-node src/bin.ts ./test/resource/sample_zip_contains_jar.zip"
},
"files": [
"/dist",
"package.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/pillsilly/recursive-unzipper.git"
},
"author": "pillsilly",
"license": "MIT",
"bugs": {
"url": "https://github.com/pillsilly/recursive-unzipper/issues"
},
"homepage": "https://github.com/pillsilly/recursive-unzipper#readme",
"dependencies": {
"commander": "^11.0.0",
"extract-zip": "^2.0.1",
"inquirer": "^9.1.4",
"lodash": "^4.17.21",
"lzma-native": "8.0.6",
"pino": "8.11.0",
"pino-pretty": "9.4.0",
"recursive-readdir": "^2.2.3",
"rimraf": "^5.0.0",
"tar": "^6.1.13"
},
"devDependencies": {
"@babel/preset-env": "7.20.2",
"@babel/preset-typescript": "7.21.0",
"@types/inquirer": "^9.0.3",
"@types/jest": "29.5.0",
"@types/lodash": "^4.14.191",
"@types/lzma-native": "^4.0.1",
"@types/node": "18.15.3",
"@types/tar": "^6.1.4",
"esbuild": "^0.17.17",
"esbuild-jest": "^0.5.0",
"jest": "^29.5.0",
"prettier": "^2.8.4",
"release-it": "15.9.0",
"stream-to-promise": "^3.0.0",
"tree-node-cli": "^1.6.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"zx": "^7.2.3"
},
"prettier": {
"printWidth": 180,
"jsxSingleQuote": true,
"singleQuote": true,
"bracketSpacing": false,
"useTabs": false,
"trailingComma": "es5"
}
}