This repository was archived by the owner on Aug 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.81 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.81 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
{
"name": "static-site-generator",
"description": "Static site generator / project skeleton for creating production-ready sites.",
"keywords": [
"static-site-generator",
"pug",
"gulp",
"linting",
"restful",
"continuous-integration",
"babel",
"sass",
"generator",
"template",
"project-scaffolding",
"project-skeleton"
],
"author": "Simon Knittel <hallo@simonknittel.de> (https://simonknittel.de)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/simonknittel/static-site-generator"
},
"bugs": {
"url": "https://github.com/simonknittel/static-site-generator/issues"
},
"scripts": {
"test": "npm run test:js && npm run production && npm run test:html",
"test:js:lint": "eslint \"src/**/*.js\"",
"test:js:jest": "jest",
"test:js": "npm run test:js:lint & npm run test:js:jest",
"test:html": "html-validator --file=dist/index.html --verbose",
"start": "gulp watch",
"default": "gulp",
"production": "gulp production"
},
"engines": {
"node": ">=12 <13",
"npm": ">=6.12.0"
},
"devDependencies": {
"@babel/core": "7.14.8",
"@babel/eslint-parser": "7.14.9",
"@babel/plugin-proposal-class-properties": "7.14.5",
"@babel/plugin-proposal-object-rest-spread": "7.14.7",
"@babel/plugin-transform-modules-commonjs": "7.14.5",
"@babel/preset-env": "7.14.9",
"@hail2u/css-mqpacker": "8.0.1",
"autoprefixer": "10.3.1",
"babel-loader": "8.2.2",
"browser-sync": "2.27.4",
"compression": "1.7.4",
"connect-modrewrite": "0.10.2",
"critical": "3.1.0",
"cssnano": "5.0.7",
"del": "6.0.0",
"eslint": "7.32.0",
"gulp": "4.0.2",
"gulp-cached": "1.1.1",
"gulp-data": "1.3.1",
"gulp-htmlmin": "5.0.1",
"gulp-imagemin": "7.1.0",
"gulp-notify": "4.0.0",
"gulp-plumber": "1.2.1",
"gulp-postcss": "9.0.0",
"gulp-pug": "4.0.1",
"gulp-pug-linter": "1.5.0",
"gulp-rename": "2.0.0",
"gulp-replace": "1.1.3",
"gulp-sass": "4.1.1",
"gulp-sitemap": "8.0.0",
"gulp-sourcemaps": "3.0.0",
"gulp-stylelint": "13.0.0",
"gulp-svg-sprite": "1.5.0",
"html-validator-cli": "7.0.1",
"imagemin-gifsicle": "7.0.0",
"imagemin-jpegtran": "7.0.0",
"imagemin-optipng": "8.0.0",
"imagemin-svgo": "9.0.0",
"jest": "27.0.6",
"js-yaml": "4.1.0",
"jstransformer-marked": "1.0.3",
"node-notifier": "10.0.0",
"postcss": "8.3.6",
"postcss-extract-media-query": "2.0.0",
"pug": "3.0.2",
"stylelint": "13.13.1",
"stylelint-group-selectors": "1.0.8",
"stylelint-high-performance-animation": "1.5.2",
"stylelint-order": "4.1.0",
"stylelint-scss": "3.20.1",
"stylelint-selector-no-empty": "1.0.8",
"webpack": "5.48.0"
},
"dependencies": {
"normalize.css": "8.0.1"
}
}