-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.59 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
64
65
66
67
68
69
70
{
"name": "social-sharing-buttons-using-material-design-lite-font-awesome-and-sass",
"version": "2021.2.6-21.49.5",
"private": false,
"license": "MIT",
"homepage": "https://codepen.io/brandonhimpfen/pen/EjpMEZ",
"scripts": {
"build": "gulp -f ./build/gulpfile.js --cwd ./ --continue",
"serve": "gulp serve -f ./build/gulpfile.js --cwd ./ --continue",
"task": "gulp -f ./build/gulpfile.js --cwd ./ --continue",
"tasks": "gulp --tasks-simple -f ./build/gulpfile.js --cwd ./ --continue"
},
"config": {
"srcDir": "src/",
"distDir": "dist/"
},
"devDependencies": {
"browser-sync": "^2.26.7",
"del": "^4.1.1",
"glob": "^7.1.4",
"gulp": "^4.0.2",
"gulp-rename": "^1.4.0",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1",
"gulp-inject-partials": "^1.0.5",
"gulp-sass": "^4.0.2",
"node-sass": "^4.12.0"
},
"tasks": {
"partials": {
"order": 999,
"src": [
"**/*.template.html"
],
"pipe": [
{
"require": "gulp-inject-partials",
"args": [
{
"removeTags": true,
"quiet": true,
"ignoreError": true
}
]
}
],
"rename": {
"find": ".template",
"replace": ""
},
"cleanup": [
"**/*.partial.html",
"**/*.template.html"
]
},
"sass": {
"src": [
"**/*.sass",
"**/*.scss"
],
"pipe": [
{
"require": "gulp-sass"
}
],
"cleanup": true
}
}
}