-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
118 lines (118 loc) · 2.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "roadtrip-cli",
"version": "1.1.0",
"description": "Deploy and host static sites with S3, CloudFront and Route53",
"main": "index.js",
"bin": {
"roadtrip": "./bin/run"
},
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"prepack": "npm run oclif-dev -- manifest && npm run oclif-dev readme",
"test": "echo \"Error: no test specified\"",
"lint": "eslint .",
"version": "npm run oclif-dev -- readme && git add README.md",
"oclif-dev": "node -r esm ./node_modules/.bin/oclif-dev"
},
"dependencies": {
"@oclif/command": "^1.5.14",
"@oclif/config": "^1.13.0",
"@oclif/plugin-autocomplete": "^0.1.1",
"@oclif/plugin-help": "^2.2.0",
"@oclif/plugin-not-found": "^1.2.2",
"@oclif/plugin-update": "^1.3.9",
"aws-sdk": "^2.470.0",
"chalk": "^2.4.2",
"debug": "^4.1.1",
"delay": "^4.2.0",
"esm": "^3.2.25",
"fs-extra": "^8.0.1",
"globby": "^9.2.0",
"listr": "^0.14.3",
"lodash": "^4.17.11",
"mime-types": "^2.1.24",
"minimatch": "^3.0.4",
"object-hash": "^1.3.1",
"s3-diff": "^1.2.1",
"untildify": "^4.0.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.22.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.0",
"prettier": "^1.17.1"
},
"author": "Timo Mämecke <[email protected]>",
"contributors": [
"Timo Mämecke <[email protected]>"
],
"license": "MIT",
"homepage": "https://github.com/railslove/roadtrip#readme",
"bugs": {
"url": "https://github.com/railslove/roadtrip/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/railslove/roadtrip.git"
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src"
],
"oclif": {
"commands": "./src/cli",
"bin": "roadtrip",
"topics": {
"bucket": {
"description": "manage project's bucket"
},
"distribution": {
"description": "manage project's distribution"
},
"domain": {
"description": "manage project's domain"
},
"project": {
"description": "manage project"
}
},
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-update",
"@oclif/plugin-autocomplete",
"@oclif/plugin-not-found"
]
},
"prettier": {
"semi": false,
"singleQuote": true
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:prettier/recommended"
],
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module",
"ecmaFeatures": {}
},
"env": {
"es6": true,
"node": true
},
"rules": {
"no-unused-vars": [
"warn",
{
"args": "all",
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_"
}
]
}
}
}