-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.18 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.18 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
{
"name": "@agencewebup/dkup",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build": "npm run build:linux && npm run build:macos && npm run build:alpine",
"build:linux": "pkg index.js --targets linux-x64 --output build/dkup_linux_x64",
"build:macos": "pkg index.js --targets macos-x64 --output build/dkup_macos_x64",
"build:alpine": "pkg index.js --targets alpine-x64 --output build/dkup_alpine_x64"
},
"repository": {
"type": "git",
"url": "git+https://github.com/agence-webup/dkup.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/agence-webup/dkup/issues"
},
"homepage": "https://github.com/agence-webup/dkup#readme",
"devDependencies": {
"eslint": "^8.17.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.1",
"eslint-plugin-promise": "^6.0.0",
"jest": "^28.1.2"
},
"dependencies": {
"aws-sdk": "^2.649.0",
"axios": "^0.21.1",
"commander": "^9.3.0",
"cron": "^1.8.2",
"date-fns": "^2.11.1",
"slugify": "^1.4.0"
}
}