-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.54 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
{
"name": "nzip",
"version": "1.0.3",
"description": "A fast & low-memory consuming archiver built on fflate and Node.js",
"main": "index.js",
"bin": {
"nzip": "./start.js"
},
"github": "ifconfigla/nzip",
"scripts": {
"lint": "eslint ./*.{js,jsx}",
"lint:fix": "eslint ./*.{js,jsx} --fix",
"build": "pkg -d --no-native-build --no-signature --no-bytecode -c ./package.json ./start.js",
"dist": "npm run build && ./scripts/pack.sh",
"start": "node ./start.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "NZIP Contributors <dev@ifconfig.la>",
"homepage": "https://nzip.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/ifconfigla/nzip.git"
},
"bugs": {
"url": "https://github.com/ifconfigla/nzip/issues"
},
"funding": "https://nzip.dev/#donations",
"license": "MIT",
"files": [
".eslintrc.js",
".gitignore",
"scripts",
"ifconfig-dev.asc",
"files.example.json",
"index.js",
"LICENSE",
"README.md",
"start.js"
],
"target": "node18",
"pkg": {
"scripts": [
"*.js",
"node_modules/fflate/**/*.{js,cjs}"
],
"targets": [
"node18.15.0-linux-x64",
"node18.15.0-macos-x64",
"node18.15.0-win-x64"
],
"outputPath": "dist"
},
"dependencies": {
"@ifconfigla/fflate": "0.8.1",
"commander": "11.0.0",
"pkg-fetch": "3.5.2"
},
"devDependencies": {
"eslint": "8.46.0",
"pkg": "5.8.1"
},
"overrides": {
"pkg": {
"pkg-fetch": "3.5.2"
}
}
}