-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.54 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
{
"title": "sale-percentage",
"version": "1.1.0",
"description": "Manages and displays sale percentage labels.",
"author": {
"name": "netzstrategen",
"email": "hallo@netzstrategen.com"
},
"homepage": "https://netzstrategen.com",
"license": "GPL-2.0",
"repository": {
"type": "git",
"url": "git@github.com:netzstrategen/woocommerce-sale-percentage.git"
},
"bugs": {
"email": "tech@netzstrategen.com",
"url": "https://github.com/netzstrategen/woocommerce-sale-percentage/issues"
},
"scripts": {
"serve": "gulp --production=true --concat=false",
"build": "gulp build --production=true --concat=false"
},
"dependencies": {
"@netzstrategen/gulp-task-collection": "^2.1.3"
},
"devDependencies": {
"eslint-config-google": "^0.14.0"
},
"browserslist": [
"last 2 versions",
"ie 11"
],
"gulpPaths": {
"destDir": "./dist",
"fonts": {
"src": "./assets/fonts/**/*.{eot,svg,ttf,woff,woff2}",
"dest": "./dist/fonts"
},
"images": {
"src": "./assets/images/**/*.{jpg,jpeg,png,gif,svg}",
"dest": "./dist/images"
},
"icons": {
"src": "./assets/icons/**/*.svg",
"dest": "./dist/icons",
"distFilename": "icons-sprite.svg"
},
"scripts": {
"src": [
"./assets/scripts/**/*.js"
],
"dest": "./dist/scripts"
},
"styles": {
"srcDir": "./assets/styles/",
"src": [
"./assets/styles/**/*.scss"
],
"dest": "./dist/styles"
},
"templates": "./templates/**/*.twig"
}
}