-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.02 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.02 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
{
"name": "teacup-backup",
"version": "0.5.1",
"description": "Teacup Backup is a simple Node.js script that finds, encrypts and creates backup of selected files.",
"main": "index.js",
"scripts": {
"lint": "eslint \"src/**/*.{ts,json}\" --fix",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.spec.ts\" \"src/**/*.json\"",
"start": "npm run build && npm run copy-config && node dist/teacup-backup.js --no-warnings",
"test": "jest",
"build": "esbuild src/index.ts --bundle --platform=node --outfile=dist/teacup-backup.js",
"copy-config": "node dev-scripts/copy-config-file.js",
"stryker": "npx stryker run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ChrisAraneo/teacup-backup.git"
},
"keywords": [
"backup",
"file-encryption"
],
"author": "Krzysztof Pająk (Chris Araneo)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ChrisAraneo/teacup-backup/issues"
},
"homepage": "https://github.com/ChrisAraneo/teacup-backup#readme",
"devDependencies": {
"@stryker-mutator/jest-runner": "^8.2.6",
"@stryker-mutator/typescript-checker": "^8.2.6",
"@types/crypto-js": "^4.1.2",
"@types/find": "^0.2.2",
"@types/jest": "^29.5.6",
"@types/lodash": "^4.14.202",
"@types/node": "^20.7.0",
"@types/prompt-sync": "^4.2.3",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"babel-jest": "^29.7.0",
"esbuild": "0.19.5",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jsonc": "^2.10.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"dependencies": {
"basic-ftp": "^5.0.4",
"crypto-js": "^4.1.1",
"file-base64": "^1.0.0",
"find": "^0.3.0",
"lodash": "^4.17.21",
"prompt-sync": "^4.2.0",
"rxjs": "^7.8.1",
"winston": "^3.11.0"
}
}