-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.16 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
{
"name": "@motivast/mizar",
"description": "Eye catching, content oriented WordPress theme. Great for mizar or any site where content is a king.",
"version": "0.2.1",
"license": "GPL-2.0+",
"private": true,
"dependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/register": "^7.4.4",
"browserslist": "^4.6.3",
"gulp": "4.0.0",
"gulp-bump": "^3.1.3",
"minimist": "^1.2.0"
},
"engines": {
"node": ">=10.0.0"
},
"browserslist": [
"last 3 versions",
"safari >= 8",
"ie >= 11"
],
"babel": {
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": "usage",
"corejs": 3
}
]
]
},
"scripts": {
"bump:prerelease": "NODE_ENV=production gulp bump --type prerelease --require @babel/register --gulpfile tasks",
"bump:patch": "NODE_ENV=production gulp bump --type patch --require @babel/register --gulpfile tasks",
"bump:minor": "NODE_ENV=production gulp bump --type minor --require @babel/register --gulpfile tasks",
"bump:major": "NODE_ENV=production gulp bump --type major --require @babel/register --gulpfile tasks"
}
}