-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·50 lines (50 loc) · 1.42 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
{
"name": "wp-gulp-starter-kit",
"version": "1.0.0",
"description": "A simple gulp toolbox for Modern Web (WordPress Theme & Plugin) Development",
"main": "echo \"Error: no test specified\" && exit 1",
"URL": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile-js": "gulp compile:js",
"compile-css": "gulp compile:scss",
"build": "gulp build",
"watch": "gulp watch"
},
"keywords": [
"WordPress",
"Theme",
"Plugin"
],
"author": "Kudratullah <[email protected]>",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"autoprefixer": "^9.1.5",
"gulp": "^4.0.0",
"gulp-autoprefixer": "^6.0.0",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-eslint": "^5.0.0",
"gulp-group-css-media-queries": "^1.2.2",
"gulp-js-prettify": "^0.1.0",
"gulp-notify": "^3.2.0",
"gulp-plumber": "^1.2.0",
"gulp-postcss": "^8.0.0",
"gulp-rename": "^1.4.0",
"gulp-sass": "^4.0.1",
"gulp-sass-lint": "^1.4.0",
"gulp-sourcemaps": "^2.6.4",
"gulp-uglify": "^3.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kudratullah/wp-gulp-starter-kit.git"
},
"bugs": {
"url": "https://github.com/Kudratullah/wp-gulp-starter-kit/issues"
},
"homepage": "https://github.com/Kudratullah/wp-gulp-starter-kit#readme"
}