-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.09 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.09 KB
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
{
"name": "pug-starter",
"version": "1.0.0",
"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",
"postinstall": "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 && gulp clean:ghpages"
},
"//": "CUSTOM CONFIGURATION",
"config": {
"customUrl": "//bitbee.uk",
"githubUrl": "https://github.com/codetapio/bitbee.git",
"deployToGithubIo": false,
"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
}
}
},
"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",
"devDependencies": {
"@babel/cli": "7.2.3",
"@babel/core": "7.3.3",
"@babel/plugin-transform-modules-commonjs": "7.2.0",
"@babel/preset-env": "7.3.1",
"@babel/preset-flow": "7.0.0",
"@babel/preset-stage-0": "7.0.0",
"@babel/preset-stage-1": "7.0.0",
"@babel/register": "7.0.0",
"autoprefixer": "9.4.7",
"babel-eslint": "10.0.1",
"babel-loader": "8.0.5",
"browser-sync": "2.26.3",
"bs-eslint-message": "0.0.3",
"del": "3.0.0",
"eslint": "5.14.1",
"foldero": "0.1.1",
"gulp": "4.0.0",
"gulp-cached": "1.1.1",
"gulp-changed": "3.2.0",
"gulp-changed-in-place": "2.3.0",
"gulp-debug": "4.0.0",
"gulp-eslint": "5.0.0",
"gulp-gh-pages": "0.5.4",
"gulp-if": "2.0.2",
"gulp-imagemin": "5.0.3",
"gulp-inline-source": "4.0.0",
"gulp-load-plugins": "1.5.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-sourcemaps": "2.6.5",
"gulp-yaml-data": "0.2.0",
"imagemin-jpegoptim": "5.0.0",
"imagemin-pngquant": "5.0.0",
"imagemin-svgo": "5.2.0",
"jstransformer-markdown-it": "2.1.0",
"merge-stream": "1.0.1",
"minimist": "1.2.0"
}
}