-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
54 lines (54 loc) · 1.3 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
{
"name": "gulp-s3-publish",
"version": "3.0.0",
"description": "A plugin for Gulp that uploads files to s3",
"keywords": [
"gulp-plugin",
"gulp",
"s3"
],
"homepage": "https://github.com/adrianfalleiro/gulp-s3-publish",
"bugs": "https://github.com/adrianfalleiro/gulp-s3-publish/issues",
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "git://github.com/adrianfalleiro/gulp-s3-publish.git"
},
"scripts": {
"build": "tsc",
"test": "mocha test/**/*.js"
},
"dependencies": {
"ansi-colors": "^1.1.0",
"fancy-log": "^1.3.3",
"lodash": "^4.17.15",
"mime": "^2.4.6",
"plugin-error": "^1.0.1",
"through2": "^3.0.2",
"through2-concurrent": "^1.1.0"
},
"peerDependencies": {
"aws-sdk": "^2.706.0"
},
"devDependencies": {
"@types/ansi-colors": "^3.2.2",
"@types/fancy-log": "^1.3.1",
"@types/gulp": "^4.0.6",
"@types/lodash": "^4.14.157",
"@types/mime": "^2.0.2",
"@types/through2": "^2.0.36",
"@types/through2-concurrent": "^2.0.0",
"gulp": "^4.0.2",
"mocha": "^8.0.1",
"mock-aws-s3": "^4.0.1",
"mock-fs": "^4.12.0",
"should": "^13.2.3",
"tsc": "^1.20150623.0",
"tslint": "^6.1.2",
"typescript": "^3.9.5"
},
"engines": {
"node": ">=8"
},
"license": "MIT"
}