-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
64 lines (64 loc) · 1.36 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
{
"name": "deploy-aws-s3-cloudfront",
"version": "3.8.0",
"description": "Syncs a local directory to an AWS S3 bucket, optionally invalidating affected CloudFront paths.",
"keywords": [
"aws",
"s3",
"cloudfront",
"deploy"
],
"homepage": "https://github.com/apancutt/deploy-aws-s3-cloudfront#readme",
"bugs": {
"url": "https://github.com/apancutt/deploy-aws-s3-cloudfront/issues"
},
"author": "Adam Pancutt <adam@pancutt.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/apancutt/deploy-aws-s3-cloudfront.git"
},
"bin": {
"deploy-aws-s3-cloudfront": "bin/deploy-aws-s3-cloudfront"
},
"files": [
"bin",
"src"
],
"dependencies": {
"aws-sdk": "2",
"enquirer": "2",
"fast-glob": "3",
"md5-file": "5",
"micromatch": "4",
"mime-types": "2",
"winston": "3",
"yargs": "17"
},
"devDependencies": {
"babel-eslint": "10",
"eslint": "8",
"jest": "29"
},
"scripts": {
"eslint": "eslint */**/*.js",
"test": "jest"
},
"eslintConfig": {
"env": {
"browser": false,
"commonjs": true,
"es6": true,
"jest": true,
"node": true
},
"parser": "babel-eslint",
"extends": "eslint:recommended"
},
"jest": {
"testPathIgnorePatterns": [
"/__tests__/mock/",
"/node_modules/"
]
}
}