-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
60 lines (60 loc) · 1.25 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
{
"name": "@static/discharge",
"version": "2.0.1",
"description": "A simple, easy way to deploy static websites to Amazon S3",
"author": {
"name": "Brandon Weiss",
"email": "[email protected]"
},
"bin": "cli.js",
"engines": {
"node": ">= 8.0.0"
},
"keywords": [
"aws",
"aws-s3",
"deploy",
"deployment",
"static",
"static-site",
"s3"
],
"license": "MIT",
"repository": "https://github.com/brandonweiss/discharge",
"scripts": {
"test": "ava"
},
"devDependencies": {
"@ava/babel": "^1.0.1",
"ava": "^3.12.0",
"husky": "^4.2.5",
"np": "^6.4.0",
"prettier": "^2.0.5",
"pretty-quick": "^3.0.0"
},
"dependencies": {
"aws-sdk": "^2.474.0",
"glob": "^7.1.6",
"inquirer": "^7.3.3",
"listr": "^0.14.3",
"lodash.differenceby": "^4.8.0",
"lodash.flatmap": "^4.5.0",
"lodash.intersectionby": "^4.7.0",
"lodash.intersectionwith": "^4.4.0",
"log-symbols": "^4.0.0",
"meow": "^7.1.0",
"mime": "^2.4.6",
"update-notifier": "^4.1.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"prettier": {
"arrowParens": "always",
"printWidth": 100,
"semi": false,
"trailingComma": "all"
}
}