@davidsneighbour/htmlvalidate-config 0.0.15 → 0.0.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +29 -1
  2. package/package.json +7 -16
package/README.md CHANGED
@@ -4,4 +4,32 @@
4
4
 
5
5
  This configuration extends the following setup on the [htmlvalidate-recommended](https://html-validate.org/rules/presets.html) configuration:
6
6
 
7
- - to be written.
7
+ ... to be written ...
8
+
9
+ <!-- CONFIGURATIONS BEGIN -->
10
+
11
+ ## davidsneighbour/configurations
12
+
13
+ A collection of configurations for website development at DNB Org.
14
+
15
+ <!-- prettier-ignore -->
16
+ |Package | Description |
17
+ | --- | --- |
18
+ | [babel-config](https://github.com/davidsneighbour/configurations/tree/main/packages/babel-config) | [Babel](https://babeljs.io/) configuration |
19
+ | [bootstrap-config](https://github.com/davidsneighbour/configurations/tree/main/packages/bootstrap-config) | [Bootstrap](https://getbootstrap.com/) configuration |
20
+ | [browserslist-config](https://github.com/davidsneighbour/configurations/tree/main/packages/browserslist-config) | [Browserslist](https://github.com/browserslist/browserslist) configuration |
21
+ | [commitlint-config](https://github.com/davidsneighbour/configurations/tree/main/packages/commitlint-config) | [Commitlint](https://github.com/conventional-changelog/commitlint) configuration |
22
+ | [cssnano-config](https://github.com/davidsneighbour/configurations/tree/main/packages/cssnano-config) | [CSSnano](https://cssnano.co/) configuration |
23
+ | [cypress-config](https://github.com/davidsneighbour/configurations/tree/main/packages/cypress-config) | [Cypress](https://www.cypress.io/) configuration |
24
+ | [eslint-config](https://github.com/davidsneighbour/configurations/tree/main/packages/eslint-config) | [ESLint](https://github.com/eslint/eslint) configuration |
25
+ | [htmlvalidate-config](https://github.com/davidsneighbour/configurations/tree/main/packages/htmlvalidate-config) | [HTMLValidate](https://html-validate.org/) configuration |
26
+ | [postcss-config](https://github.com/davidsneighbour/configurations/tree/main/packages/postcss-config) | [PostCSS](https://postcss.org/) configuration |
27
+ | [prettier-config](https://github.com/davidsneighbour/configurations/tree/main/packages/prettier-config) | [Prettier](https://prettier.io/) configuration |
28
+ | [remark-config](https://github.com/davidsneighbour/configurations/tree/main/packages/remark-config) | [ReMark](https://github.com/remarkjs/remark-lint) configuration |
29
+ | [standard-version-config](https://github.com/davidsneighbour/configurations/tree/main/packages/standard-version-config) | [Standard Version](https://github.com/conventional-changelog/standard-version) configuration |
30
+ | [stylelint-config](https://github.com/davidsneighbour/configurations/tree/main/packages/stylelint-config) | [StyleLint](https://github.com/stylelint/stylelint) configuration |
31
+ | [textlint-config](https://github.com/davidsneighbour/configurations/tree/main/packages/textlint-config) | [TextLint](https://github.com/textlint/textlint) configuration |
32
+ | [webpack-config](https://github.com/davidsneighbour/configurations/tree/main/packages/webpack-config) | [Webpack](https://webpack.js.org/) configuration |
33
+ | [tools](https://github.com/davidsneighbour/configurations/tree/main/packages/tools) | Tools |
34
+
35
+ <!-- CONFIGURATIONS END -->
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@davidsneighbour/htmlvalidate-config",
3
- "version": "0.0.15",
3
+ "version": "0.0.19",
4
4
  "license": "MIT",
5
5
  "description": "HTMLvalidate configuration for use in davidsneighbour projects.",
6
6
  "author": "Patrick Kollitsch <patrick@davids-neighbour.com> (https://davids-neighbour.com)",
@@ -13,21 +13,12 @@
13
13
  "url": "https://github.com/davidsneighbour/configurations/issues"
14
14
  },
15
15
  "dependencies": {
16
- "@davidsneighbour/eslint-config": "^4.0.4",
17
- "cypress-html-validate": "^3.0.0",
18
- "html-validate": "^7.0.0"
16
+ "@davidsneighbour/eslint-config": "file:../eslint-config",
17
+ "cypress-html-validate": "^4.0.0",
18
+ "html-validate": "^7.1.1"
19
19
  },
20
- "engines": {
21
- "node": ">=16",
22
- "npm": ">=7"
23
- },
24
- "eslintConfig": {
25
- "extends": "@davidsneighbour/eslint-config"
26
- },
27
- "keywords": [
28
- "htmlvalidate",
29
- "htmlvalidate-config"
30
- ],
31
20
  "main": "index.js",
32
- "gitHead": "7a927c88e068ac5923b1c59da26a2a402d4580bb"
21
+ "scripts": {
22
+ "release": "../../release"
23
+ }
33
24
  }