forked from nuxt-modules/html-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·64 lines (64 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·64 lines (64 loc) · 1.57 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
{
"name": "@nuxtjs/html-validator",
"version": "0.7.0",
"description": "html-validator integration for Nuxt.js",
"keywords": [
"nuxt",
"module",
"nuxt-module",
"html-validator",
"validation",
"html"
],
"repository": "nuxt-community/html-validator-module",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "siroc build",
"dev": "nuxt example",
"lint": "eslint --ext .js,.ts,.vue",
"lint:all": "yarn lint .",
"prepare": "husky install && yarn build",
"prepublishOnly": "yarn test",
"release": "yarn build && yarn test && release-it",
"test": "yarn lint && yarn build && jest"
},
"dependencies": {
"defu": "5.0.1",
"html-validate": "7.1.1"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "7.18.5",
"@babel/preset-env": "7.18.2",
"@babel/preset-typescript": "7.17.12",
"@nuxt/test-utils": "0.2.2",
"@nuxt/types": "2.15.8",
"@nuxtjs/eslint-config-typescript": "10.0.0",
"@release-it/conventional-changelog": "5.0.0",
"@types/jest": "28.1.3",
"babel-eslint": "latest",
"babel-jest": "28.1.1",
"eslint": "8.18.0",
"husky": "8.0.1",
"jest": "28.1.1",
"lint-staged": "12.5.0",
"nuxt-edge": "2.16.0-27226092.034b9901",
"release-it": "15.0.0",
"siroc": "0.16.0"
},
"peerDependencies": {
"chalk": "^3.0.0 || ^4.0.0",
"consola": "^2.15.0",
"prettier": "^2.1.2"
},
"publishConfig": {
"access": "public"
},
"volta": {
"node": "16.15.1"
}
}