-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.4 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": "website-deploy",
"version": "2.0.0",
"description": "A simple utility to deploy a static website to [s3-bucket, lambda, ...]",
"main": "index.js",
"keywords": [
"aws",
"s3",
"lambda",
"static",
"website",
"deploy",
"node",
"cli"
],
"author": "Rishikesh Darandale <Rishikesh.Darandale@gmail.com>",
"homepage": "https://rishikeshdarandale.github.io/website-deploy/",
"bugs": {
"url": "https://github.com/RishikeshDarandale/website-deploy/issues",
"email": "Rishikesh.Darandale@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/RishikeshDarandale/website-deploy"
},
"license": "MIT",
"dependencies": {
"aws-sdk": "^2.1443.0",
"bestzip": "^2.2.1",
"chalk": "^4.1.2",
"clear": "^0.1.0",
"clui": "^0.3.6",
"commander": "^5.1.0",
"figlet": "^1.6.0",
"mime": "^2.6.0"
},
"devDependencies": {
"@commitlint/cli": "^8.3.6",
"@commitlint/config-conventional": "^8.3.6",
"ava": "2.4.0",
"eslint": "^7.32.0",
"eslint-config-google": "^0.14.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"mock-fs": "^4.14.0",
"prettier": "^1.15.3",
"sinon": "^9.2.4"
},
"engines": {
"node": ">=8.11.2",
"npm": ">=5.6.0"
},
"scripts": {
"test": "ava --verbose",
"lint": "eslint --fix"
},
"bin": {
"website-deploy": "./commands/website-deploy"
}
}