-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
46 lines (46 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
{
"name": "wp-user-profiles",
"version": "2.6.2",
"main": "webpack.config.js",
"author": "John James Jacoby",
"private": true,
"license": "GPL-2.0-or-later",
"engines": {
"node": ">=8.0.0",
"npm": ">=6.0.0"
},
"devDependencies": {
"@babel/core": "7.4.3",
"@wordpress/babel-preset-default": "4.1.0",
"@wordpress/browserslist-config": "2.3.0",
"@wordpress/eslint-plugin": "2.1.0",
"babel-loader": "8.0.5",
"copy-webpack-plugin": "^6.4.1",
"cross-env": "5.2.0",
"eslint": "5.16.0",
"grunt": "^1.5.3",
"grunt-checktextdomain": "^1.0.1",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-compress": "^1.6.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-cssmin": "^2.2.1",
"grunt-force-task": "^2.0.0",
"grunt-rtlcss": "~2.0.2",
"grunt-text-replace": "^0.4.0",
"grunt-wp-i18n": "^1.0.3",
"grunt-wp-readme-to-markdown": "~1.0.0",
"load-grunt-tasks": "^3.5.2",
"makepot": "^0.3.0",
"uglify-es": "3.3.9",
"uglifyjs-webpack-plugin": "2.1.2",
"webpack": "4.29.6",
"webpack-cli": "^3.3.12"
},
"scripts": {
"build": "cross-env NODE_ENV=production webpack",
"dev": "cross-env NODE_ENV=default webpack --watch",
"lint": "./node_modules/.bin/eslint .; exit 0",
"lint:fix": "./node_modules/.bin/eslint . --fix; exit 0",
"package-plugin": "npm run build && grunt build"
}
}