This repository has been archived by the owner on Jan 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.1 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
{
"name": "aws-cloudfront-s3-deploy",
"version": "1.2.10",
"description": "Package to upload files to s3 distribution, and also invalidate those paths in CloudFront if necessary",
"engines": {
"node": ">=6.0.0"
},
"main": "dist/lib/index.js",
"bin": {
"aws-cloudfront-s3-deploy": "dist/bin/cli.js"
},
"scripts": {
"build": "babel src -d dist",
"commit": "git-cz",
"test": "mocha --require @babel/register ./test/*",
"test:no-compile": "mocha ./test/*",
"test-with-cov": "./node_modules/istanbul/lib/cli.js cover --include-all-sources --root ./src ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec",
"lint": "./node_modules/eslint/bin/eslint.js src/**/*.js test/*.js || true",
"preversion": "npm test",
"release": "standard-version"
},
"keywords": [
"aws",
"cloudfront",
"s3"
],
"author": {
"name": "Peter Reid",
"email": "[email protected]",
"url": "https://reidweb.com"
},
"repository": {
"type": "git",
"url": "https://github.com/ReidWeb/aws-cloudfront-s3-deploy"
},
"dependencies": {
"@babel/runtime": "^7.0.0",
"aws-sdk": "^2.311.0",
"chalk": "^2.4.1",
"commander": "^2.18.0",
"cz-conventional-changelog": "^2.1.0",
"mime-types": "^2.1.20",
"progress": "^2.0.0",
"recursive-readdir": "^2.2.2"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.1",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-plugin-rewire": "^1.2.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"commitizen": "^3.0.0",
"eslint": "^5.5.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-mocha": "^5.2.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"istanbul": "^0.4.5",
"mocha": "^6.0.0",
"nyc": "^13.0.1",
"rewire": "^4.0.1",
"sinon": "^6.3.0",
"standard-version": "^4.4.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}