forked from awesomemotive/WP-Mail-SMTP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.66 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
{
"name": "wp-mail-smtp",
"version": "3.0.3",
"description": "Make email delivery easy for WordPress. Connect with SMTP, Gmail, Outlook, SendGrid, Mailgun, Zoho, SES, and more.",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/awesomemotive/wp-mail-smtp.git"
},
"license": "GPL-2.0+",
"bugs": {
"url": "https://github.com/awesomemotive/wp-mail-smtp/issues"
},
"homepage": "https://wpmailsmtp.com",
"devDependencies": {
"babel-eslint": "^10.0.3",
"cross-env": "^7.0.0",
"eslint": "^6.8.0",
"eslint-config-wordpress": "^2.0.0",
"eslint-plugin-jsdoc": "^22.1.0",
"gulp": "^4.0.2",
"gulp-cached": "^1.1.1",
"gulp-clean": "^0.4.0",
"gulp-debug": "^4.0.0",
"gulp-imagemin": "^7.1.0",
"gulp-include": "^2.4.1",
"gulp-rename": "^1.4.0",
"gulp-replace": "^1.0.0",
"gulp-sass": "^4.1.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-uglify": "^3.0.2",
"gulp-watch": "^5.0.1",
"gulp-zip": "^4.2.0",
"husky": "^4.2.3",
"lint-diff": "file:.packages/npm/lint-diff",
"lodash": "^4.17.21",
"merge-stream": "^2.0.0",
"npm-run-all": "^4.1.5",
"yargs": "^13.3.2",
"yargs-parser": "^13.1.2",
"y18n": "^3.2.2"
},
"engines": {
"node": ">=14.15.3",
"npm": ">=6.14.9"
},
"scripts": {
"gulp": "node ./node_modules/gulp/bin/gulp.js",
"lint-diff": "cross-env node node_modules/lint-diff/dist/lint-diff.js",
"phpcs-diff": "cross-env php vendor/bin/phpcs-diff",
"cs": "run-s --silent --continue-on-error lint-diff phpcs-diff"
},
"husky": {
"hooks": {
"pre-push": "npm run --silent cs"
}
},
"dependencies": {}
}