-
Notifications
You must be signed in to change notification settings - Fork 85
/
package.json
61 lines (61 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
55
56
57
58
59
60
61
{
"name": "gulp-awspublish",
"version": "8.0.0",
"description": "gulp plugin to publish files to amazon s3",
"keywords": [
"gulpplugin",
"aws",
"s3",
"publish"
],
"homepage": "https://github.com/pgherveou/gulp-awspublish",
"bugs": "https://github.com/pgherveou/gulp-awspublish/issues",
"author": {
"name": "PG Herveou",
"email": "[email protected]",
"url": "https://github.com/pgherveou"
},
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "git://github.com/pgherveou/gulp-awspublish.git"
},
"scripts": {
"lint": "prettier --write **/*.{js,md} && eslint --fix .",
"pretest": "npm run lint",
"test": "mocha"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.245.0",
"ansi-colors": "^4.1.3",
"fancy-log": "^2.0.0",
"lodash.chunk": "^4.2.0",
"mime-types": "^2.1.35",
"pascal-case": "^3.1.1",
"plugin-error": "^2.0.1",
"vinyl": "^3.0.0"
},
"devDependencies": {
"chai": "^4.3.7",
"concurrent-transform": "^1.0.0",
"eslint": "^8.31.0",
"gulp": "^4.0.0",
"gulp-rename": "^2.0.0",
"mocha": "^10.2.0",
"prettier": "^2.8.2"
},
"engines": {
"node": ">=14"
},
"licenses": [
{
"type": "MIT"
}
],
"files": [
"lib"
],
"prettier": {
"singleQuote": true
}
}