-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
41 lines (41 loc) · 966 Bytes
/
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": "knife-theme",
"author": "Anton Lukin",
"description": "Simple modern WordPress theme for community blog",
"main": "gulpfile.js",
"repository": {
"type": "git",
"url": "https://github.com/knife-media/knife-theme.git"
},
"license": "MIT",
"scripts": {
"start": "gulp",
"build": "gulp build && gulp worker"
},
"devDependencies": {
"@babel/core": "^7.18.0",
"@babel/preset-env": "^7.18.0",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^8.0.0",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-concat": "^2.6.1",
"gulp-plumber": "^1.2.1",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.1.0",
"gulp-sass-glob": "^1.1.0",
"gulp-uglify": "^3.0.2",
"sass": "^1.52.1",
"workbox-build": "^6.5.3"
},
"browserslist": [
"ie >= 9",
"ff >= 30",
"chrome >= 34",
"safari >= 7",
"opera >= 23",
"ios >= 7",
"android >= 4.4"
],
"dependencies": {}
}