-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.06 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.06 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
{
"name": "helios-backups",
"version": "1.1.0",
"description": "Helios Backups Server - Secure Backup File Server",
"main": "dist/index.js",
"bin": {
"helios-backups": "./bin/helios-backups"
},
"scripts": {
"build": "tsc",
"dev": "ts-node src/index.ts",
"start": "node dist/index.js",
"clean": "rm -rf dist",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"security:audit": "npm audit",
"security:check": "npm audit --audit-level=moderate",
"security:full": "npm run security:audit && npm run security:check",
"prebuild": "npm run clean",
"postinstall": "npm run build",
"prepublishOnly": "npm run test && npm run lint && npm run security:full"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"dependencies": {
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"helmet": "^7.1.0",
"morgan": "^1.10.0",
"stream-throttle": "^0.1.3"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.0",
"@types/morgan": "^1.9.9",
"@types/node": "^20.10.0",
"@types/stream-throttle": "^0.1.4",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.0",
"typescript": "^5.3.0"
},
"keywords": [
"helios",
"backups",
"server",
"security",
"cdn",
"daemon"
],
"repository": {
"type": "git",
"url": "https://github.com/helios-network/helios-backups-provider"
},
"bugs": {
"url": "https://github.com/helios-network/helios-backups-provider/issues"
},
"homepage": "https://github.com/helios-network/helios-backups-provider#readme",
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/__tests__/**/*.ts",
"**/?(*.)+(spec|test).ts"
],
"collectCoverageFrom": [
"src/**/*.ts",
"!src/**/*.d.ts"
]
}
}