-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.89 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
{
"name": "backup-to-cloud",
"version": "4.3.0",
"description": "A simple backup tool which uploads encrypted files to S3",
"author": "Valentin Agachi",
"scripts": {
"coverage": "rm -rf .nyc_output/ coverage/ && BACKUP_ENV=test nyc --reporter=text --reporter=lcov mocha test/*-test.js",
"lint": "eslint . bin/backup-to-cloud --ignore-pattern '!.eslintrc.js'",
"pretty": "prettier --write --list-different \"**/*.js\"",
"release": "standard-version",
"start": "bin/backup-to-cloud",
"test": "BACKUP_ENV=test mocha test/*-test.js"
},
"license": "MIT",
"engines": {
"node": ">=14"
},
"os": [
"darwin",
"linux"
],
"bin": {
"backup-decrypt": "./bin/backup-decrypt",
"backup-restore": "./bin/backup-restore",
"backup-to-cloud": "./bin/backup-to-cloud",
"backup-upgrade-db": "./bin/backup-upgrade-db",
"backup-verify": "./bin/backup-verify"
},
"files": [
"LICENSE",
"config.sample.js",
"lib/",
"bin/"
],
"dependencies": {
"pretty-bytes": "5.6.0",
"slackr": "1.0.0",
"sqlite": "5.0.1",
"sqlite3": "5.1.6"
},
"devDependencies": {
"@commitlint/cli": "17.6.7",
"@commitlint/config-conventional": "17.6.7",
"chai": "4.2.0",
"conventional-recommended-bump": "6.0.0",
"eslint": "6.2.2",
"husky": "3.0.4",
"lint-staged": "9.2.5",
"md5-file": "4.0.0",
"mocha": "6.2.0",
"nyc": "15.1.0",
"prettier": "1.18.2",
"standard-version": "8.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/avaly/backup-to-cloud.git"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"subject-case": [
2,
"always",
[
"sentence-case"
]
]
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint --edit $1",
"pre-commit": "lint-staged"
}
}
}