-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 1.82 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
80
81
{
"name": "@smpx/pg_backup",
"version": "0.3.9",
"description": "Script to run wal-e backups, copy them for weekly archival, and monitor the results",
"main": "index.js",
"scripts": {
"test": "jest"
},
"bin": {
"pg_backup": "bin/pg_backup.js"
},
"author": "Rohit Gohri <rohit.gohri@smartprix.com> (https://github.com/rohit-smpx)",
"keywords": [
"postgres",
"backup",
"wal-e",
"continuous",
"retention-levels",
"weekly",
"cli"
],
"dependencies": {
"@slack/client": "^4.2.0",
"@smpx/oak": "^1.2.7",
"@types/command-line-args": "^5.0.0",
"@types/command-line-commands": "^2.0.1",
"@types/command-line-usage": "^5.0.1",
"command-line-args": "^4.0.7",
"command-line-commands": "^2.0.1",
"command-line-usage": "^4.1.0",
"moment": "^2.22.1",
"sm-utils": "^2.15.4"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.1.2",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-modules-commonjs": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"@types/node": "^10.12.6",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"eslint": "^4.19.1",
"eslint-config-smartprix": "^3.4.2",
"jest": "^23.6.0"
},
"eslintConfig": {
"extends": "smartprix",
"rules": {
"vue/script-indent": 0
},
"env": {
"node": true,
"browser": false
}
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
},
"modules": "commonjs",
"shippedProposals": true
}
]
],
"sourceMaps": "inline",
"retainLines": true,
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-transform-modules-commonjs",
"@babel/plugin-proposal-object-rest-spread"
]
}
}