-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.22 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
{
"name": "core-standards",
"version": "3.3.1",
"title": "WordPress Core Refinements",
"description": "Various features and adjustments for WordPress Core that do not need configuration.",
"main": "gulpfile.js",
"devDependencies": {
"@netzstrategen/gulp-task-collection": "^1.5.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/netzstrategen/wordpress-core-standards.git"
},
"author": "netzstrategen",
"license": "GPL-2.0+",
"bugs": {
"url": "https://github.com/netzstrategen/wordpress-core-standards/issues"
},
"homepage": "https://github.com/netzstrategen/wordpress-core-standards#readme",
"dependencies": {},
"browserslist": [
"last 2 versions"
],
"gulpPaths": {
"destDir": "./dist",
"fonts": {
"src": "./assets/fonts/**/*.{eot,svg,ttf,woff,woff2}",
"dest": "./dist/fonts"
},
"images": {
"src": "./assets/img/**/*.{jpg,jpeg,png,gif,svg}",
"dest": "./dist/img"
},
"scripts": {
"src": "./assets/scripts/**/*.js",
"dest": "./dist/scripts"
},
"styles": {
"srcDir": "./assets/styles",
"src": [
"./assets/styles/**/*.scss"
],
"dest": "./dist/styles"
},
"templates": ""
}
}