forked from Codeinwp/neve
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
133 lines (133 loc) · 3.77 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
133
{
"name": "neve",
"nicename": "Neve",
"version": "2.7.7",
"description": "Neve theme by ThemeIsle",
"category": "themes",
"repository": {
"type": "git",
"url": "git+https://github.com/Codeinwp/neve.git"
},
"keywords": [
"wordpress-theme"
],
"theme": {
"textdomain": "neve"
},
"author": "ThemeIsle <[email protected]>",
"license": "GPL-2.0+",
"bugs": {
"url": "https://github.com/Codeinwp/neve/issues"
},
"pot": {
"reportmsgidbugsto": "https://github.com/Codeinwp/neve/issues",
"languageteam": "Themeisle Translate <[email protected]>",
"lasttranslator": "Themeisle Translate Team <[email protected]>"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.11.0",
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@percy/cypress": "^2.3.1",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-multi-entry": "^4.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@size-limit/preset-app": "^4.5.6",
"@size-limit/webpack": "^4.5.6",
"babel-loader": "^8.1.0",
"conventional-changelog-simple-preset": "^1.0.14",
"core-js": "^3.6.5",
"cross-env": "^7.0.2",
"cypress": "^4.11.0",
"cypress-file-upload": "^4.0.7",
"grunt": "^1.2.1",
"grunt-cli": "^1.3.2",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-cssmin": "^3.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-newer": "^1.3.0",
"grunt-rtlcss": "^2.0.2",
"grunt-sass": "^3.1.0",
"grunt-version": "^2.0.0",
"grunt-wp-i18n": "^1.0.3",
"grunt-wp-readme-to-markdown": "^2.0.1",
"husky": "^4.2.5",
"load-project-config": "~0.2.1",
"node-sass": "^4.14.1",
"npm-run-all": "^4.1.5",
"replace-in-file": "^6.1.0",
"rollup": "^1.32.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-uglify": "^6.0.4",
"semantic-release": "^17.1.1",
"size-limit": "^4.5.6",
"url-slug": "^2.3.2",
"webpack": "^4.44.0"
},
"scripts": {
"phpcbf": "composer run-script format || true ",
"phpcs": "composer run-script phpcs",
"git:add": "git add *.css assets/**/*.css assets/**/*.js",
"build:grunt": "grunt build",
"bump-vendor": "grunt version:packageVersion",
"build:rollup": "./node_modules/.bin/rollup -c",
"build:makepot": "docker run --user root --rm --volume \"$(pwd):/var/www/html/neve\" wordpress:cli bash -c 'php -d memory_limit=512M \"$(which wp)\" i18n make-pot ./neve/ ./neve/languages/neve.pot --allow-root '",
"watch:rollup": "./node_modules/.bin/rollup -c --watch",
"watch:grunt": "grunt watch",
"dev": "npm-run-all --parallel watch:*",
"build": "npm-run-all build:*",
"size": "size-limit",
"pre-commit": "npm-run-all phpcs build size",
"cypress:open": "cypress open",
"visual:test": "percy exec -- cypress run --config baseUrl=https://qa-neve.themeisle.com,video=false --spec 'cypress/integration/visual-regression/**/*.spec.js' --headless",
"release": "npx semantic-release",
"dist": "bash ./bin/dist.sh"
},
"size-limit": [
{
"gzip": false,
"running": false,
"limit": "6 KB",
"path": "assets/js/build/modern/frontend.js"
},
{
"gzip": false,
"running": false,
"limit": "33 KB",
"path": "assets/js/build/modern/shop.js"
},
{
"gzip": false,
"running": false,
"limit": "33 KB",
"path": "assets/js/build/all/shop.js"
},
{
"gzip": false,
"running": false,
"limit": "6 KB",
"path": "assets/js/build/all/frontend.js"
},
{
"gzip": false,
"running": false,
"webpack": false,
"limit": "47 KB",
"path": "style.min.css"
}
],
"husky": {
"hooks": {
"pre-commit": "yarn run pre-commit",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"tiny-slider": "^2.9.2"
}
}