forked from web-standards-ru/web-standards.ru
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.47 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
{
"private": true,
"engines": {
"node": "14.x",
"npm": "6.x"
},
"scripts": {
"start": "eleventy --serve --quiet",
"editorconfig": "editorconfig-checker",
"stylelint": "stylelint \"src/styles/**/*.css\"",
"eslint": "eslint src/**/*.js",
"markdown": "remark 'src/articles/**/*.md' --quiet",
"typograph": "remark",
"html": "node-w3c-validator -i ./dist/**/*.html --exclude ./dist/**/demos/** -f lint -evH",
"test": "npm run editorconfig && npm run stylelint && npm run markdown && npm run eslint",
"build": "eleventy && gulp build",
"deploy": "cd dist && rsync --archive --compress --delete . [email protected]:/var/www/web-standards.ru/html/"
},
"devDependencies": {
"@11ty/eleventy": "^0.12.1",
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@mavrin/remark-typograf": "^2.2.0",
"autoprefixer": "^10.3.6",
"del": "^6.0.0",
"editorconfig-checker": "^4.0.2",
"eslint": "^7.32.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-postcss": "^9.0.1",
"gulp-replace": "^1.1.3",
"gulp-rev": "^9.0.0",
"gulp-rev-rewrite": "^4.0.0",
"gulp-terser": "^2.1.0",
"html-minifier": "^4.0.0",
"hyphen": "^1.6.2",
"linkedom": "^0.9.7",
"markdown-it-multimd-table": "^4.1.1",
"node-w3c-validator": "^2.0.1",
"node-xml-stream": "^1.0.2",
"postcss": "^8.3.8",
"postcss-color-hex-alpha": "^7.0.0",
"postcss-csso": "^5.0.0",
"postcss-import": "^14.0.2",
"pretty-data": "^0.40.0",
"remark-cli": "^9.0.0",
"remark-frontmatter": "^3.0.0",
"remark-lint": "^8.0.0",
"remark-lint-code-block-style": "^2.0.1",
"remark-lint-emphasis-marker": "^2.0.1",
"remark-lint-ordered-list-marker-value": "^2.0.1",
"remark-lint-strong-marker": "^2.0.1",
"remark-lint-unordered-list-marker-style": "^2.0.1",
"rollup-stream": "^1.24.1",
"stylelint": "^13.13.1",
"stylelint-order": "^4.1.0",
"typograf": "^6.12.1",
"vinyl-buffer": "^1.0.1",
"vinyl-paths": "^3.0.1",
"vinyl-source-stream": "^2.0.0"
},
"browserslist": [
"last 2 version",
"not dead",
"not ie <= 11"
],
"nodeW3Cvalidator": {
"suppressErrors": [
"Bad value for attribute “href” on element “a”: Illegal character in fragment: “#” is not allowed.",
"Bad value “soft-light” for attribute “mode” on element “feBlend”.",
"Element “style” not allowed as child of element “div” in this context."
]
}
}