-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1011 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 1011 Bytes
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
{
"name": "brain-2fa",
"version": "1.0.0",
"description": "Two Factor Authentication (2FA) plugin for WordPress",
"author": "Braintum",
"license": "GPL-2.0-or-later",
"scripts": {
"dev": "webpack --mode development --watch",
"build": "webpack --mode production",
"build:dev": "webpack --mode development",
"lint": "eslint src/js",
"lint:fix": "eslint src/js --fix"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.7",
"@wordpress/dependency-extraction-webpack-plugin": "^5.3.0",
"@wordpress/i18n": "^4.42.0",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.9.0",
"eslint": "^8.56.0",
"eslint-config-wordpress": "^2.0.0",
"mini-css-extract-plugin": "^2.7.7",
"sass": "^1.69.7",
"sass-loader": "^13.3.3",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
}
}