-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
134 lines (134 loc) · 3.66 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
{
"name": "css3-html5-game",
"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",
"prod": "npm run prod-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"
},
"//": "CUSTOM CONFIGURATION",
"installConfig": {
"pnp": true
},
"config": {
"customUrl": "http://pug-starter.codetap.io",
"githubUrl": "https://github.com/marianzburlea/css3-html5-game",
"deployToGithubIo": true,
"directory": {
"development": "tmp",
"production": "build",
"ghpages": ".publish",
"source": "src",
"data": "_data",
"component": "_component",
"layout": "_layout",
"asset": "_asset",
"image": "image",
"font": "font",
"templateCollection": [
"article",
"product"
]
},
"render": {
"sourceFileChange": 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.0",
"@babel/core": "7.5.4",
"@babel/plugin-transform-modules-commonjs": "7.5.0",
"@babel/preset-env": "7.5.4",
"@babel/preset-flow": "7.0.0",
"@babel/preset-stage-0": "7.0.0",
"@babel/preset-stage-1": "7.0.0",
"@babel/register": "7.4.4",
"autoprefixer": "9.6.1",
"babel-eslint": "10.0.2",
"babel-loader": "8.0.6",
"browser-sync": "2.26.7",
"bs-eslint-message": "0.0.3",
"chalk": "2.4.2",
"core-js": "^3.1.4",
"del": "5.0.0",
"eslint": "6.0.1",
"foldero": "0.1.1",
"gulp": "4.0.2",
"gulp-cached": "1.1.1",
"gulp-changed": "4.0.0",
"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": "2.0.2",
"gulp-imagemin": "6.0.0",
"gulp-inline-source": "4.0.0",
"gulp-load-plugins": "2.0.0",
"gulp-notify": "^3.2.0",
"gulp-plumber": "1.2.1",
"gulp-postcss": "8.0.0",
"gulp-pug": "4.0.1",
"gulp-rename": "1.4.0",
"gulp-sass": "4.0.2",
"gulp-sass-variables": "1.2.0",
"gulp-sourcemaps": "2.6.5",
"imagemin-gifsicle": "6.0.1",
"imagemin-jpegoptim": "5.0.0",
"imagemin-jpegtran": "6.0.0",
"imagemin-optipng": "7.0.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",
"standard-version": "7.0.0"
}
}