-
Notifications
You must be signed in to change notification settings - Fork 182
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.6 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.6 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
{
"name": "html5boilerplate.com",
"version": "9.0.0",
"private": true,
"description": "static website for https://html5boilerplate.com",
"homepage": "https://html5boilerplate.com/",
"bugs": {
"url": "https://github.com/h5bp/html5boilerplate.com/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/h5bp/html5boilerplate.com.git"
},
"license": "MIT",
"author": "@h5bp",
"scripts": {
"build": "node --experimental-modules ./node_modules/gulp/bin/gulp.js build",
"css-lint": "stylelint \"src/css/*_*.css\" --fix -f verbose",
"html-lint": "npx htmlhint src/*.html",
"js-lint": "eslint *.mjs --fix",
"lint": "npm run css-lint && npm run js-lint && npm run html-lint",
"pa11y": "npx pa11y https://html5boilerplate.com/",
"serve": "gulp serve",
"serve:build": "gulp serve:build",
"test": "gulp build"
},
"devDependencies": {
"browser-sync": "^3.0.4",
"del": "^7.1.0",
"eslint": "^8.57.1",
"eslint-config-recommended": "^4.1.0",
"gulp": "5.0.1",
"gulp-autoprefixer": "^9.0.0",
"gulp-css-base64": "^2.0.0",
"gulp-csso": "^4.0.1",
"gulp-eslint": "^6.0.0",
"gulp-htmlmin": "^5.0.1",
"gulp-if": "^3.0.0",
"gulp-rename": "^2.1.0",
"gulp-replace": "^1.1.4",
"gulp-rework": "^4.0.0",
"gulp-smoosher": "0.0.9",
"gulp-useref": "^5.0.0",
"main.css": "3.0.0",
"rework-npm": "^1.0.0",
"stylelint": "^16.21.0",
"stylelint-config-standard": "^38.0.0"
},
"h5bp-configs": {
"directories": {
"dist": "docs",
"src": "src"
}
},
"engines": {
"node": ">=16"
}
}