-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
94 lines (94 loc) · 2.59 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
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@tradle/conf",
"version": "1.51.3",
"description": "CLI for managing your Tradle MyCloud instance",
"repository": {
"type": "git",
"url": "https://github.com/tradle/configure-tradle"
},
"author": "Mark Vayngrib <mark@tradle.io> (http://github.com/mvayngrib)",
"license": "MIT",
"main": "./lib/index.js",
"bin": {
"tradleconf": "./lib/cmd.js"
},
"scripts": {
"lint": "eslint --quiet --ext .json --ext .js --ignore-path .gitignore .",
"test": "node lib/test",
"tswatch": "tsc -w",
"precommit": "tsc && lint-staged && npm test",
"prepare": "tsc",
"release": "standard-version",
"release:patch": "standard-version --release-as patch",
"release:minor": "standard-version --release-as minor",
"release:major": "standard-version --release-as major",
"docker:build": "./build-image.sh",
"docker:publish": "docker push tradle.conf"
},
"keywords": [
"tradle",
"mycloud",
"cli"
],
"bugs": {
"url": "https://github.com/tradle/configure-tradle/issues"
},
"homepage": "https://github.com/tradle/configure-tradle",
"dependencies": {
"@tradle/errors": "^2.0.1",
"@tradle/merge-models": "^3.0.0",
"@tradle/models": "github:tradle/models",
"@tradle/models-cloud": "github:tradle/models-cloud",
"@tradle/models-pack": "^1.1.0",
"@tradle/protocol": "^5.1.1",
"@tradle/qr": "^2.1.1",
"@tradle/qr-schema": "^3.0.4",
"@tradle/validate-model": "^7.1.36",
"@tradle/validate-resource": "^4.3.5",
"amazon-s3-uri": "0.0.3",
"ansi-colors": "^4.1.1",
"aws-sdk": "^2.1051.0",
"co": "^4.6.0",
"commander": "^6.2.1",
"debug": "^3.1.0",
"dotenv": "^4.0.0",
"eslint": "^8.6.0",
"eslint-plugin-json": "^3.1.0",
"execa": "^1.0.0",
"inquirer": "^8.2.0",
"lexicographic-semver": "^1.0.1",
"listr": "^0.13.0",
"lodash": "^4.17.21",
"marked": "^4.0.10",
"node-fetch": "^2.0.0",
"opn": "^5.3.0",
"pify": "^3.0.0",
"promise-retry": "^1.1.1",
"promptly": "^2.2.0",
"protocol-buffers": "^4.2.0",
"shelljs": "^0.8.4",
"source-map-support": "^0.5.3",
"tmp": "0.0.33",
"tslib": "^1.9.0",
"update-notifier": "^5.1.0",
"yn": "^2.0.0",
"zen-observable": "^0.8.15"
},
"devDependencies": {
"@types/lodash": "^4.14.178",
"@types/node": "14.10.3",
"husky": "^0.14.3",
"lint-staged": "^12.1.5",
"sinon": "^7.1.0",
"standard-version": "^9.3.2",
"tape": "^5.4.0",
"typescript": "^3.9.10"
},
"lint-staged": {
"README.md": [
"doctoc",
"git add"
]
},
"standard-version": {}
}