-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.17 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.17 KB
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
{
"name": "gridd-theme",
"version": "1.0.0",
"author": "wplemon.com team",
"description": "WordPress Theme",
"homepage": "https://wplemon.com",
"license": "GPL2",
"repository": {
"type": "git",
"url": "https://gitlab.com/wplemon/gridd"
},
"bugs": {
"url": "https://gitlab.com/wplemon/gridd/issues"
},
"licenses": [
{
"type": "GPL2",
"url": "https://opensource.org/licenses/MIT"
}
],
"engines": {
"node": ">= 0.10.0"
},
"devDependencies": {
"@wordpress/eslint-plugin": "^3.1.0",
"grunt": "^1.3.0",
"grunt-contrib-clean": "*",
"grunt-contrib-cssmin": "*",
"grunt-contrib-sass": "^2.0.0",
"grunt-contrib-uglify": "*",
"grunt-contrib-watch": "*",
"grunt-wp-i18n": "~1",
"node-sass": "^4.14.1",
"stylelint": "^11.1.1",
"stylelint-config-wordpress": "^15.0.0",
"uglifyjs-webpack-plugin": "^2.2.0"
},
"scripts": {
"blockStyles:getNew": "bash bin/update-gutenberg-styles.sh",
"blockStyles:update": "mv bin/dist/*.css assets/css/blocks/defaults/core/",
"blockStyles": "npm run blockStyles:getNew && npm run blockStyles:update",
"build": "npm run blockStyles && grunt"
}
}