forked from PopupMaker/Popup-Maker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
132 lines (132 loc) · 4.13 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "popup-maker",
"version": "1.18.1",
"description": "WordPress Popup Plugin",
"homepage": "https://wppopupmaker.com",
"author": "Code Atlantic LLC",
"private": true,
"license": "GPL-2.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/PopupMaker/Popup-Maker/"
},
"bugs": {
"url": "https://github.com/PopupMaker/Popup-Maker/issues"
},
"main": "gulpfile.js",
"engines": {
"node": "^13.14.0",
"npm": ">=6.13.0",
"yarn": ">=1.12.0"
},
"scripts": {
"build": "wp-scripts build",
"check-engines": "wp-scripts check-engines",
"check-licenses": "wp-scripts check-licenses",
"format:js": "wp-scripts format-js",
"format:js:src": "wp-scripts format-js ./src",
"lint:style": "wp-scripts lint-style",
"lint:css:src": "wp-scripts lint-style 'src/**/*.css'",
"lint:js": "wp-scripts lint-js",
"lint:md:docs": "wp-scripts lint-md-docs",
"lint:md:js": "wp-scripts lint-md-js",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"packages-update": "wp-scripts packages-update",
"postpackages-update": "npm run build",
"start": "wp-scripts start",
"release": "gulp release",
"gulp:start": "gulp",
"gulp:build": "gulp prebuild",
"test:e2e": "wp-scripts test-e2e",
"test:unit": "wp-scripts test-unit-js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"babel": {
"presets": [
"@wordpress/babel-preset-default"
]
},
"eslintConfig": {
"extends": [
"plugin:@wordpress/eslint-plugin/recommended"
]
},
"dependencies": {
"iframe-resizer": "^4.2.10",
"mobile-detect": "^1.4.4"
},
"devDependencies": {
"@wordpress/base-styles": "^1.5.0",
"@wordpress/eslint-plugin": "^8.0.2",
"@wordpress/prettier-config": "^1.0.1",
"@wordpress/scripts": "^10.0.0",
"classnames": "^2.2.6",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.5.0",
"del": "^4.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^5.0.0",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^6.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-concat": "^2.6.1",
"gulp-filter": "^5.1.0",
"gulp-load-plugins": "^1.5.0",
"gulp-notify": "^3.2.0",
"gulp-order": "^1.2.0",
"gulp-plumber": "^1.2.1",
"gulp-rename": "^1.4.0",
"gulp-rtlcss": "^1.4.1",
"gulp-sane-watch": "^3.0.2",
"gulp-sass": "^4.0.2",
"gulp-sourcemaps": "^2.6.5",
"gulp-uglify": "^3.0.2",
"gulp-util": "^3.0.8",
"gulp-wp-pot": "^2.4.1",
"gulp-zip": "^4.2.0",
"ignore-emit-webpack-plugin": "^2.0.2",
"merge-stream": "^1.0.1",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "4.13.1",
"path": "^0.12.7",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"require-dir": "^1.2.0",
"sass-loader": "^8.0.2",
"uglify-es": "^3.3.9",
"uglifyjs-webpack-plugin": "^2.2.0",
"unminified-webpack-plugin": "^2.0.0",
"webpack-merge": "^4.2.2"
},
"comments": {
"devDependencies": {
"note": "These are non required dependencies, but adding them above allows your IDE to autocomplete correctly. They are loaded in WP core and are not needed beyond this purpose.",
"@wordpress/block-editor": "^3.8.0",
"@wordpress/blocks": "^6.10.0",
"@wordpress/components": "^9.3.0",
"@wordpress/compose": "^3.12.0",
"@wordpress/data": "^4.12.0",
"@wordpress/dom": "^2.8.0",
"@wordpress/dom-ready": "^2.8.0",
"@wordpress/element": "^2.12.0",
"@wordpress/format-library": "^1.15.0",
"@wordpress/hooks": "^2.7.0",
"@wordpress/i18n": "^3.10.0",
"@wordpress/keycodes": "^2.8.0",
"@wordpress/rich-text": "^3.13.0"
}
},
"notes": {
"note": "These are pre-block editor dependencies that need to be merged back into the list aboe",
"babel-loader": "^8.1.0",
"@babel/core": "^7.9.0",
"@wordpress/babel-preset-default": "^4.11.0",
"@wordpress/eslint-plugin": "^2.1.0",
"cross-env": "^5.2.0",
"eslint": "^5.15.3",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
}
}