This repository was archived by the owner on Nov 25, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.76 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.76 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
{
"name": "@simplrjs/azure-storage-backup",
"version": "0.1.0-beta.2",
"description": "CLI tool to backup Azure storage account to file system.",
"homepage": "https://github.com/SimplrJS/azure-storage-backup",
"main": "dist/index.js",
"types": "@types/index.d.ts",
"scripts": {
"clean": "rimraf @types & rimraf dist",
"prebuild": "npm run clean",
"build": "tsc -p .",
"tslint": "tslint --project . --config ./tslint.json",
"watch": "tsc -w",
"copy-json": "cpx ./src/*.json ./dist/",
"test": "tsc -p . --noEmit && npm run tslint",
"release": "npm run build && npm run tslint && npm run copy-json"
},
"repository": {
"type": "git",
"url": "https://github.com/SimplrJS/azure-storage-backup"
},
"keywords": [
"backend",
"azure",
"blob",
"exporter",
"download",
"storage",
"azure-storage"
],
"author": "simplrjs <simplr@quatrodev.com> (https://github.com/simplrjs)",
"license": "ISC",
"engine": "node >= 5.0.0",
"bin": {
"azure-storage-backup": "./dist/cli/cli.js"
},
"files": [
"dist",
"@types",
"*.MD",
"*.js",
"*.d.ts"
],
"devDependencies": {
"cpx": "^1.5.0",
"rimraf": "^2.6.2",
"simplr-tslint": "0.0.1",
"tslint": "^5.7.0",
"typescript": "^2.6.1"
},
"dependencies": {
"@types/cli-table2": "^0.2.1",
"@types/filesize": "^3.2.15",
"@types/fs-extra": "^4.0.2",
"@types/inquirer": "0.0.35",
"@types/node": "^8.0.34",
"@types/progress": "^2.0.0",
"@types/yargs": "^8.0.2",
"azure-storage": "^2.6.0",
"cli-table2": "^0.2.0",
"fast-glob": "^1.0.1",
"filesize": "^3.5.11",
"fs-extra": "^4.0.2",
"inquirer": "^3.3.0",
"progress": "^2.0.0",
"simplr-logger": "^1.0.0",
"yargs": "^10.0.3"
}
}