forked from vue-a11y/vue-axe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 3.19 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "vue-axe",
"version": "4.9.1",
"description": "Dynamic accessibility analysis for Vue.js using axe-core",
"main": "dist/vue-axe.umd.js",
"module": "dist/vue-axe.esm.js",
"unpkg": "dist/vue-axe.min.js",
"types": "index.d.ts",
"scripts": {
"dev": "rollup --config rollup.config.dev.mjs --watch",
"build": "npm run build:umd & npm run build:es & npm run build:unpkg",
"build:umd": "rollup --config rollup.config.prod.mjs --format umd --file dist/vue-axe.umd.js",
"build:es": "rollup --config rollup.config.prod.mjs --format es --file dist/vue-axe.esm.js",
"build:unpkg": "rollup --config rollup.config.prod.mjs --format iife --file dist/vue-axe.min.js",
"demo:dev": "cd demo && npm run serve",
"demo:build": "cd demo && npm run build",
"demo:publish": "surge ./demo/dist https://vue-axe.surge.sh/",
"docs:dev": "./node_modules/.bin/vuepress dev docs --no-cache",
"docs:build": "./node_modules/.bin/vuepress build docs --no-cache && echo axe.vue-a11y.com >> docs/.vuepress/dist/CNAME",
"docs:publish": "gh-pages -d docs/.vuepress/dist",
"release": "standard-version",
"test:e2e": "node_modules/.bin/cypress run --headless",
"test:e2e:open": "node_modules/.bin/cypress open",
"project:publish": "git push --tags origin master && npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vue-a11y/vue-axe.git"
},
"keywords": [
"accessibility",
"a11y",
"vue.js",
"test",
"auditing"
],
"author": "Alan Ktquez <[email protected]> (https://github.com/ktquez/)",
"contributors": [
{
"name": "Josh",
"url": "https://github.com/MechJosh0"
},
{
"name": "Maarten Van Hoof",
"email": "[email protected]",
"url": "https://github.com/vanhoofmaarten"
},
{
"name": "Takayuki Shimada",
"email": "[email protected]",
"url": "https://github.com/tsmd"
},
{
"name": "Michael Große",
"url": "https://github.com/micgro42"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/vue-a11y/vue-axe/issues"
},
"homepage": "https://github.com/vue-a11y/vue-axe#readme",
"devDependencies": {
"@babel/eslint-parser": "^7.24.8",
"@rollup/plugin-buble": "^1.0.3",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-eslint": "^9.0.5",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.7",
"@rollup/plugin-terser": "^0.4.4",
"@vue/eslint-config-standard": "^8.0.1",
"axe-core": "^4.9.1",
"chokidar": "^3.6.0",
"cypress": "^13.13.1",
"deepmerge": "^4.3.1",
"eslint": "^8.57.0",
"eslint-plugin-cypress": "^3.3.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-vue": "^9.27.0",
"gh-pages": "^6.1.1",
"rollup": "^4.19.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-vue": "^6.0.0",
"standard-version": "^9.5.0",
"vue": "^3.2.26",
"vue-template-compiler": "^2.7.16",
"vuepress": "^0.14.11",
"vuepress-theme-default-vue-a11y": "^0.1.15",
"watchpack": "^2.4.1"
},
"peerDependencies": {
"axe-core": "4.9.1"
}
}