-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
151 lines (151 loc) · 4.27 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"name": "pug-starter",
"version": "1.0.1",
"description": "Simple pug (jade) starter [framework] enabling faster delivery of HTML & CSS projects to a private server and/or automatic deployment of GitHub pages.",
"main": "index.js",
"scripts": {
"start": "gulp dev --lang=en",
"dev": "gulp dev --lang=en",
"prod": "npm run prod-en",
"build": "gulp build --production --lang=en",
"prod-en": "gulp build --production --lang=en",
"prod-ro": "gulp build --production --lang=ro",
"deploy": "gulp build --production --lang=en && gulp deploy --production && gulp clean:ghpages --production",
"release": "standard-version",
"update": "git pull && npm run prod",
"test": "jest",
"install:normal": "npm run i --ignore-scripts",
"reset-git": "echo \"Reset Git\" && rm -rf .git && git init && git add . && git commit -m \"From Zero to Hired with wowdop.com\""
},
"//": "CUSTOM CONFIGURATION",
"installConfig": {
"pnp": false
},
"config": {
"customUrl": "//pug.wowjob.dev",
"githubUrl": "http://github.com/marianzburlea/pug-starter.git",
"deployToGithubIo": false,
"directory": {
"development": "tmp",
"production": "dist",
"ghpages": ".publish",
"source": "src",
"data": "_data",
"component": "_component",
"layout": "_layout",
"asset": "_asset",
"image": "image",
"font": "font",
"templateCollection": [
"article",
"product"
]
},
"render": {
"sourceFileChange": false,
"allPugFiles": false,
"url": {
"//": "this is recommended to avoid Linux/Windows capitalization issue",
"htmlExtensionOn": false,
"toLowercase": true
}
},
"entry": {
"cssExternal": "style**.{scss,sass}",
"cssEmbed": "embed**.{scss,sass}",
"cssModular": false,
"css": {
"embed": false,
"external": true
}
},
"autoLaunchBrowser": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/marianzburlea/pug-starter.git"
},
"keywords": [
"pug",
"starter",
"jade",
"starter"
],
"author": "Marian Zburlea",
"license": "MIT",
"bugs": {
"url": "https://github.com/marianzburlea/pug-starter/issues"
},
"homepage": "https://github.com/marianzburlea/pug-starter#readme",
"browserslist": [
"last 2 version",
"> 5%",
"safari 5",
"ios 6",
"android 4"
],
"devDependencies": {
"@babel/cli": "7.5.5",
"@babel/core": "7.5.5",
"@babel/plugin-transform-modules-commonjs": "7.5.0",
"@babel/preset-env": "7.5.5",
"@babel/preset-flow": "7.0.0",
"@babel/preset-stage-0": "7.0.0",
"@babel/preset-stage-1": "7.0.0",
"@babel/register": "7.5.5",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/stream": "^2.0.0",
"autoprefixer": "9.6.2",
"babel": "^6.23.0",
"babel-eslint": "10.0.3",
"babel-loader": "8.0.6",
"browser-sync": "2.26.7",
"bs-eslint-message": "0.0.3",
"bulma": "^0.8.0",
"chalk": "2.4.2",
"constantinople": "^4.0.1",
"core-js": "^3.1.4",
"del": "5.1.0",
"eslint": "6.1.0",
"foldero": "0.1.1",
"gulp": "4.0.2",
"gulp-cached": "1.1.1",
"gulp-changed": "4.0.1",
"gulp-changed-in-place": "2.3.0",
"gulp-debug": "4.0.0",
"gulp-eslint": "6.0.0",
"gulp-gh-pages": "0.6.0-1",
"gulp-if": "3.0.0",
"gulp-imagemin": "6.1.0",
"gulp-inline-source": "4.0.0",
"gulp-load-plugins": "2.0.1",
"gulp-notify": "^3.2.0",
"gulp-plumber": "1.2.1",
"gulp-postcss": "8.0.0",
"gulp-rename": "1.4.0",
"gulp-sass-variables": "1.2.0",
"gulp-sourcemaps": "^3.0.0",
"imagemin-gifsicle": "6.0.1",
"imagemin-jpegtran": "6.0.0",
"imagemin-optipng": "7.1.0",
"imagemin-pngquant": "8.0.0",
"imagemin-svgo": "7.0.0",
"jest": "^24.8.0",
"js-yaml": "3.13.1",
"jstransformer-markdown-it": "2.1.0",
"merge-stream": "2.0.0",
"minimist": "1.2.0",
"pngquant-bin": "5.0.2",
"rollup": "^2.52.1",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"dependencies": {
"gulp-dart-sass": "^1.0.2",
"gulp-pug": "^5.0.0",
"sass": "^1.34.1",
"standard-version": "^9.3.0"
}
}