-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.58 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.58 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "nuwax-file-server",
"displayName": "nuwax-file-server",
"version": "1.2.0",
"description": "跨平台的文件服务部署工具,支持 start/stop/restart 命令行操作",
"type": "module",
"main": "index.js",
"bin": {
"nuwax-file-server": "./dist/cli.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=22.0.0"
},
"os": [
"darwin",
"linux",
"win32"
],
"scripts": {
"start": "nodemon src/server.js",
"dev": "nodemon scripts/start-dev.js",
"test": "nodemon scripts/start-test.js",
"prod": "node scripts/start-prod.js",
"test:run": "NODE_OPTIONS='--experimental-vm-modules' jest --coverage",
"test:watch": "jest --watch",
"test:unit": "jest --testPathPattern=tests/unit",
"test:integration": "jest --testPathPattern=tests/integration",
"start:test": "nodemon scripts/start-test.js",
"pnpm:check:dev": "NODE_ENV=development node scripts/pnpm-check-wrapper.js",
"pnpm:check:prod": "NODE_ENV=production node scripts/pnpm-check-wrapper.js",
"pnpm:check:test": "NODE_ENV=test node scripts/pnpm-check-wrapper.js",
"pnpm:prune": "pnpm store prune",
"pnpm:prune:manual": "node scripts/pnpm-prune-manual.js",
"pnpm:status": "pnpm store status",
"cli:start": "node src/cli.js start",
"cli:stop": "node src/cli.js stop",
"cli:restart": "node src/cli.js restart",
"cli:status": "node src/cli.js status",
"cli:start:dev": "node src/cli.js start --env development",
"cli:start:prod": "node src/cli.js start --env production",
"cli:start:test": "node src/cli.js start --env test",
"build": "node scripts/build.js",
"prepublishOnly": "npm run build"
},
"author": "",
"license": "ISC",
"keywords": [
"file-server",
"deployer",
"cli",
"cross-platform",
"nuwax"
],
"repository": {
"type": "git",
"url": ""
},
"bugs": {
"url": ""
},
"homepage": "",
"dependencies": {
"archiver": "^5.3.2",
"commander": "^12.0.0",
"concurrently": "^9.2.1",
"cross-spawn": "^7.0.6",
"dotenv": "^17.2.2",
"express": "^5.1.0",
"fs-extra": "^11.2.0",
"iconv-lite": "^0.7.0",
"isbinaryfile": "^5.0.6",
"json-bigint": "^1.0.0",
"mime-types": "^3.0.1",
"multer": "^2.0.2",
"node-cron": "^3.0.3",
"pm2": "^6.0.11",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"tree-kill": "^1.2.2",
"uuid": "^13.0.0",
"yauzl": "^3.2.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"esbuild": "^0.24.2",
"jest": "^29.7.0",
"nodemon": "^3.1.10",
"supertest": "^6.3.4"
}
}