Commits (39)
-
WhiteSource Renovate authored
Signed-off-by:
Renovate Bot <bot@renovateapp.com>
685efb17 -
WhiteSource Renovate authored
Signed-off-by:
Renovate Bot <bot@renovateapp.com>
6b93759b -
WhiteSource Renovate authored
Signed-off-by:
Renovate Bot <bot@renovateapp.com>
0248da50 -
WhiteSource Renovate authored
Signed-off-by:
Renovate Bot <bot@renovateapp.com>
b83468d9 -
WhiteSource Renovate authored
Signed-off-by:
Renovate Bot <bot@renovateapp.com>
020a1d5f -
WhiteSource Renovate authored
Signed-off-by:
Renovate Bot <bot@renovateapp.com>
168fe6c0 -
WhiteSource Renovate authored
Signed-off-by:
Renovate Bot <bot@renovateapp.com>
5ef219e6 -
WhiteSource Renovate authored
Signed-off-by:
Renovate Bot <bot@renovateapp.com>
59fd5a32 -
David Sveningsson authored5ff4d8d7
-
David Sveningsson authored
chore(deps): update dependency prettier to v2.2.0 See merge request !457
633ac356 -
David Sveningsson authorede93f27fa
-
David Sveningsson authored8dfb83a1
-
David Sveningsson authored324cdf9d
-
David Sveningsson authored7151179d
-
WhiteSource Renovate authored
Signed-off-by:
Renovate Bot <bot@renovateapp.com>
a8e5fffa -
WhiteSource Renovate authored
Signed-off-by:
Renovate Bot <bot@renovateapp.com>
ef255760 -
David Sveningsson authoredbfea0dd3
-
David Sveningsson authored7b1ef693
-
WhiteSource Renovate authored
Signed-off-by:
Renovate Bot <bot@renovateapp.com>
129f6c37 -
David Sveningsson authored6eaf1164
-
David Sveningsson authored8ce703ae
-
WhiteSource Renovate authored
Signed-off-by:
Renovate Bot <bot@renovateapp.com>
02e09c7c -
David Sveningsson authorede95e3ce7
-
David Sveningsson authoredca1e396c
-
David Sveningsson authoredafa08e5b
-
David Sveningsson authored7a381121
-
David Sveningsson authoredc7debb82
-
WhiteSource Renovate authored
Signed-off-by:
Renovate Bot <bot@renovateapp.com>
8c48398c -
WhiteSource Renovate authored
Signed-off-by:
Renovate Bot <bot@renovateapp.com>
0dfeeb39 -
WhiteSource Renovate authored
Signed-off-by:
Renovate Bot <bot@renovateapp.com>
3f64a14a -
WhiteSource Renovate authored
Signed-off-by:
Renovate Bot <bot@renovateapp.com>
3ec879b7 -
WhiteSource Renovate authored
Signed-off-by:
Renovate Bot <bot@renovateapp.com>
54b64fe7 -
WhiteSource Renovate authored
Signed-off-by:
Renovate Bot <bot@renovateapp.com>
82cb576d -
WhiteSource Renovate authored
Signed-off-by:
Renovate Bot <bot@renovateapp.com>
1df9e63a -
WhiteSource Renovate authored
Signed-off-by:
Renovate Bot <bot@renovateapp.com>
3df8a0a8 -
David Sveningsson authored
Saves about 25 dependencies and roughly 50% of downloaded size (49MB to 26MB)
82d17ebc -
David Sveningsson authored
my goto filename for test files
d318df3e -
David Sveningsson authored
Replace inquirer with prompts See merge request !458
2be077ca -
David Sveningsson authored
## [4.1.0](v4.0.2...v4.1.0) (2020-12-14) ### Features * replace `inquirer` with `prompts` ([82d17ebc](82d17ebc))
Showing
This diff is collapsed.
{ | ||
"name": "html-validate", | ||
"version": "4.0.2", | ||
"version": "4.1.0", | ||
"description": "html linter", | ||
"keywords": [ | ||
"html", | ||
... | ... | @@ -8,20 +8,17 @@ |
"validator", | ||
"html-validate" | ||
], | ||
"author": "David Sveningsson <ext@sidvind.com>", | ||
"license": "MIT", | ||
"homepage": "https://html-validate.org", | ||
"bugs": { | ||
"url": "https://gitlab.com/html-validate/html-validate/issues/new" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://gitlab.com/html-validate/html-validate.git" | ||
}, | ||
"bugs": { | ||
"url": "https://gitlab.com/html-validate/html-validate/issues/new" | ||
}, | ||
"license": "MIT", | ||
"author": "David Sveningsson <ext@sidvind.com>", | ||
"main": "dist/shim.js", | ||
"engines": { | ||
"node": ">= 10.0" | ||
}, | ||
"bin": { | ||
"html-validate": "bin/html-validate.js" | ||
}, | ||
... | ... | @@ -41,44 +38,55 @@ |
"scripts": { | ||
"build": "tsc", | ||
"build:docs": "grunt docs", | ||
"clean": "rm -rf build public", | ||
"compatibility": "scripts/compatibility.sh", | ||
"clean": "rm -rf dist public", | ||
"commitlint": "commitlint", | ||
"compatibility": "scripts/compatibility.sh", | ||
"debug": "node --inspect ./node_modules/.bin/jest --runInBand --watch --no-coverage", | ||
"eslint": "eslint --ext js,ts .", | ||
"eslint:fix": "eslint --ext js,ts . --fix", | ||
"htmlvalidate": "./bin/html-validate.js", | ||
"prepare": "git config commit.template ./node_modules/@html-validate/commitlint-config/gitmessage", | ||
"prettier:check": "prettier . --check", | ||
"prettier:write": "prettier . --write", | ||
"prepare": "scripts/prepare.sh", | ||
"prettier:check": "prettier --check .", | ||
"prettier:write": "prettier --write .", | ||
"semantic-release": "semantic-release", | ||
"start": "grunt connect", | ||
"test": "jest --ci" | ||
}, | ||
"commitlint": { | ||
"extends": [ | ||
"@html-validate" | ||
] | ||
}, | ||
"husky": { | ||
"hooks": { | ||
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS", | ||
"pre-commit": "lint-staged", | ||
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS", | ||
"pre-push": "./scripts/pre-push" | ||
} | ||
}, | ||
"commitlint": { | ||
"extends": [ | ||
"@html-validate" | ||
] | ||
}, | ||
"lint-staged": { | ||
"*.{ts,js,json,html,md,scss}": "prettier --write" | ||
}, | ||
"prettier": "@html-validate/prettier-config", | ||
"renovate": { | ||
"extends": [ | ||
"@html-validate" | ||
"jest": { | ||
"collectCoverageFrom": [ | ||
"src/**/*.ts", | ||
"!src/**/*.spec.ts", | ||
"!src/**/index.ts", | ||
"!src/shim.ts", | ||
"!src/cli/html-validate.ts" | ||
], | ||
"preset": "@html-validate/jest-config", | ||
"roots": [ | ||
"<rootDir>/docs", | ||
"<rootDir>/elements", | ||
"<rootDir>/src", | ||
"<rootDir>/tests" | ||
], | ||
"snapshotSerializers": [ | ||
"pretty-format/build/plugins/ConvertAnsi" | ||
] | ||
}, | ||
"release": { | ||
"extends": "@html-validate/semantic-release-config" | ||
}, | ||
"dependencies": { | ||
"@babel/code-frame": "^7.10.4", | ||
"@html-validate/stylish": "1.0.0", | ||
... | ... | @@ -89,19 +97,19 @@ |
"deepmerge": "^4.2.2", | ||
"espree": "^7.3.0", | ||
"glob": "^7.1.6", | ||
"inquirer": "^7.3.3", | ||
"json-merge-patch": "^1.0.1", | ||
"minimist": "^1.2.5" | ||
"minimist": "^1.2.5", | ||
"prompts": "^2.0.0" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "7.12.3", | ||
"@babel/preset-env": "7.12.1", | ||
"@babel/core": "7.12.9", | ||
"@babel/preset-env": "7.12.7", | ||
"@commitlint/cli": "11.0.0", | ||
"@html-validate/commitlint-config": "1.1.1", | ||
"@html-validate/eslint-config": "2.1.1", | ||
"@html-validate/jest-config": "1.0.34", | ||
"@html-validate/eslint-config": "2.3.2", | ||
"@html-validate/jest-config": "1.1.0", | ||
"@html-validate/prettier-config": "1.1.0", | ||
"@html-validate/semantic-release-config": "1.1.1", | ||
"@html-validate/semantic-release-config": "1.1.2", | ||
"@lodder/grunt-postcss": "3.0.0", | ||
"@types/babel__code-frame": "7.0.2", | ||
"@types/estree": "0.0.45", | ||
... | ... | @@ -110,7 +118,8 @@ |
"@types/jest": "26.0.15", | ||
"@types/json-merge-patch": "0.0.5", | ||
"@types/minimist": "1.2.1", | ||
"@types/node": "11.15.35", | ||
"@types/node": "11.15.38", | ||
"@types/prompts": "2.0.9", | ||
"autoprefixer": "10.0.2", | ||
"babelify": "10.0.0", | ||
"bootstrap-sass": "3.4.1", | ||
... | ... | @@ -119,9 +128,7 @@ |
"dgeni": "0.4.12", | ||
"dgeni-front-matter": "2.0.3", | ||
"dgeni-packages": "0.28.4", | ||
"eslint": "7.13.0", | ||
"eslint-plugin-array-func": "3.1.7", | ||
"eslint-plugin-node": "11.1.0", | ||
"eslint": "7.14.0", | ||
"eslint-plugin-security": "1.4.0", | ||
"eslint-plugin-sonarjs": "0.5.0", | ||
"font-awesome": "4.7.0", | ||
... | ... | @@ -132,44 +139,36 @@ |
"grunt-contrib-connect": "3.0.0", | ||
"grunt-contrib-copy": "1.0.0", | ||
"grunt-sass": "3.1.0", | ||
"highlight.js": "10.3.2", | ||
"highlight.js": "10.4.0", | ||
"husky": "4.3.0", | ||
"jest": "26.6.3", | ||
"jest-diff": "26.6.2", | ||
"jquery": "3.5.1", | ||
"lint-staged": "10.5.1", | ||
"lint-staged": "10.5.2", | ||
"load-grunt-tasks": "5.1.0", | ||
"marked": "1.2.4", | ||
"marked": "1.2.5", | ||
"minimatch": "3.0.4", | ||
"npm-pkg-lint": "1.2.0", | ||
"postcss": "8.1.7", | ||
"prettier": "2.1.2", | ||
"npm-pkg-lint": "1.3.0", | ||
"postcss": "8.1.10", | ||
"prettier": "2.2.0", | ||
"pretty-format": "26.6.2", | ||
"sass": "1.29.0", | ||
"semantic-release": "17.2.3", | ||
"semantic-release": "17.3.0", | ||
"serve-static": "1.14.1", | ||
"stringmap": "0.2.2", | ||
"strip-ansi": "6.0.0", | ||
"ts-jest": "26.4.4", | ||
"typescript": "4.0.5" | ||
"typescript": "4.1.2" | ||
}, | ||
"jest": { | ||
"preset": "@html-validate/jest-config", | ||
"collectCoverageFrom": [ | ||
"src/**/*.ts", | ||
"!src/**/*.spec.ts", | ||
"!src/**/index.ts", | ||
"!src/shim.ts", | ||
"!src/cli/html-validate.ts" | ||
], | ||
"roots": [ | ||
"<rootDir>/docs", | ||
"<rootDir>/elements", | ||
"<rootDir>/src", | ||
"<rootDir>/tests" | ||
], | ||
"snapshotSerializers": [ | ||
"pretty-format/build/plugins/ConvertAnsi" | ||
"engines": { | ||
"node": ">= 10.0" | ||
}, | ||
"release": { | ||
"extends": "@html-validate/semantic-release-config" | ||
}, | ||
"renovate": { | ||
"extends": [ | ||
"@html-validate" | ||
] | ||
} | ||
} |
scripts/prepare.sh
0 → 100755