-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
94 lines (94 loc) · 2.48 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "videomail-for-ninja-forms",
"version": "7.0.0",
"description": "With this add-on recording videos in Wordpress Ninja Forms comes true.",
"author": "Michael Heuberger <michael.heuberger@binarykitchen.com>",
"contributors": [
{
"name": "Michael Heuberger",
"email": "michael.heuberger@binarykitchen.com"
},
{
"name": "Kyle B. Johnson",
"email": "kyle@wpninjas.com"
}
],
"homepage": "https://videomail.io",
"license": "CC0-1.0",
"readmeFilename": "README.md",
"keywords": [
"webcam",
"video",
"videomail",
"wordpress",
"ninja form"
],
"repository": {
"type": "git",
"url": "https://github.com/binarykitchen/videomail-for-ninja-forms.git"
},
"engines": {
"node": ">=22.8.0",
"npm": ">=10.8.2"
},
"scripts": {
"wp": "gulp watch --host=wp",
"mh": "gulp watch --port=443 --host=videomail-for-ninja-forms.home",
"build": "gulp build",
"lint": "eslint ./src gulpfile.js",
"lint:fix": "npm --silent run lint -- --fix; exit 0",
"prettier": "prettier --check ./src gulpfile.js .eslintrc.js",
"prettier:fix": "prettier --write ./src gulpfile.js .eslintrc.js",
"clean": "rm -rf node_modules && rm -rf target && rm -rf package-lock.json",
"release": "./env/dev/release.sh"
},
"prettier": "./prettier.config.cjs",
"babel": {
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": "usage",
"corejs": 3
}
]
],
"plugins": [
"@babel/transform-runtime"
]
},
"dependencies": {
"videomail-client": "10.0.22"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/eslint-parser": "7.25.9",
"@babel/plugin-transform-runtime": "7.25.9",
"@babel/preset-env": "7.26.0",
"@babel/runtime": "7.26.0",
"babel-eslint": "10.1.0",
"browser-sync": "3.0.3",
"del": "6.1.1",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.2.0",
"fancy-log": "2.0.0",
"gulp": "4.0.2",
"gulp-autoprefixer": "8.0.0",
"gulp-bytediff": "1.0.0",
"gulp-cssnano": "2.1.3",
"gulp-load-plugins": "2.0.8",
"gulp-plumber": "1.2.1",
"gulp-rename": "2.0.0",
"gulp-sourcemaps": "3.0.0",
"gulp-stylus": "2.7.1",
"gulp-uglify": "3.0.2",
"gulp-zip": "5.1.0",
"minimist": "1.2.8",
"nib": "1.2.0",
"prettier": "3.4.2",
"yargs": "17.7.2"
}
}