-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.17 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
{
"name": "s3-redeploy",
"version": "1.1.1",
"description": "Node.js utility to sync files to Amazon S3 and invalidate CloudFront distributions.",
"main": "./src/index.js",
"bin": "./bin/s3-redeploy.js",
"scripts": {
"lint": "eslint src/ bin/ 'test/**/*.spec.js'",
"test": "jest",
"test-ci": "npm run lint && npm run test",
"cover": "jest --coverage --coverageReporters=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/batrudinych/s3-redeploy.git"
},
"keywords": [
"s3",
"cloudfront",
"s3-deploy",
"aws",
"static",
"hosting"
],
"author": "@batrudinych",
"contributors": [
"@puzpuzpuz"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/batrudinych/s3-redeploy/issues"
},
"homepage": "https://github.com/batrudinych/s3-redeploy#readme",
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"aws-sdk": "^2.381.0",
"co": "^4.6.0",
"glob": "^7.1.3",
"mime": "^2.4.0"
},
"devDependencies": {
"coveralls": "^3.0.2",
"eslint": "^5.9.0",
"jest": "^23.6.0"
},
"files": [
"bin/",
"src/",
"npm-shrinkwrap.json"
]
}