-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1.29 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
{
"name": "block-context",
"description": "WordPress plugin for showing or hiding Gutenberg blocks in context.",
"homepage": "https://blockcontext.com",
"author": {
"name": "Kaspars Dambis",
"url": "https://preseto.com"
},
"scripts": {
"dev": "webpack --watch --mode=development --output=./js/dist/[name].js",
"build-js": "webpack --mode=production --output=./js/dist/[name].js",
"build-php": "composer build",
"build": "npm run build-php && npm run build-js",
"release": "npm run build && grunt release",
"release-zip": "npm run build && grunt release-zip",
"deploy": "npm run build && grunt deploy",
"deploy-trunk": "npm run build && grunt deploy-trunk",
"clean": "grunt clean"
},
"license": "GPL-2.0",
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/plugin-transform-react-jsx": "^7.1.6",
"@wordpress/babel-preset-default": "^3.0.1",
"babel-loader": "^8.0.4",
"grunt": "^1.0.3",
"grunt-cli": "^1.3.2",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-compress": "^1.4.3",
"grunt-contrib-copy": "^1.0.0",
"grunt-wp-deploy": "^2.0.0",
"handlebars": "^4.1.0",
"load-grunt-tasks": "^4.0.0",
"parse-gitignore": "^0.5",
"webpack": "^4.26.0",
"webpack-cli": "^3.1.2"
},
"dependencies": {}
}