-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
95 lines (95 loc) · 3.18 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
{
"name": "@vue-a11y/skip-to",
"version": "2.1.2",
"description": "It helps people who only use the keyboard to jump to what matters most.",
"main": "dist/vue-skip-to.ssr.js",
"module": "dist/vue-skip-to.esm.js",
"browser": "dist/vue-skip-to.esm.js",
"unpkg": "dist/vue-skip-to.min.js",
"jsdelivr": "dist/vue-skip-to.min.js",
"types": "index.d.ts",
"scripts": {
"dev": "cross-env NODE_ENV=development rollup --config rollup.config.dev.js --watch",
"build": "cross-env NODE_ENV=production run-s build:*",
"build:ssr": "rollup --config rollup.config.prod.js --format cjs --file dist/vue-skip-to.ssr.js",
"build:es": "rollup --config rollup.config.prod.js --format es --file dist/vue-skip-to.esm.js",
"build:unpkg": "rollup --config rollup.config.prod.js --format iife --file dist/vue-skip-to.min.js",
"demo:cli": "cd demo-cli && npm run serve",
"release": "standard-version",
"test:unit": "jest",
"test:e2e": "node_modules/.bin/cypress run --headless",
"test:e2e:open": "node_modules/.bin/cypress open ",
"project:publish": "git push --follow-tags origin master && npm run build && npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vue-a11y/vue-skip-to.git"
},
"keywords": [
"a11y",
"accessibility",
"skip to content",
"vue.js",
"keyboard",
"skip links",
"vuepress",
"visual-impairments",
"screen-reader",
"tab",
"keyboard"
],
"author": "Alan Ktquez <[email protected]> (https://github.com/ktquez)",
"contributors": [
{
"name": "William Lindvall",
"email": "[email protected]",
"url": "https://github.com/shwilliam"
},
{
"name": "Marcus Herrmann",
"email": "[email protected]",
"url": "https://github.com/marcus-herrmann"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/vue-a11y/vue-skip-to/issues"
},
"homepage": "https://github.com/vue-a11y/vue-skip-to#readme",
"devDependencies": {
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"@rollup/plugin-replace": "^2.3.2",
"@vue/eslint-config-standard": "^5.1.2",
"@vue/test-utils": "^1.0.2",
"@vuepress/plugin-register-components": "^1.4.1",
"@vuepress/theme-default": "^1.4.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.0.1",
"chokidar": "^3.4.0",
"cross-env": "^7.0.2",
"cypress": "^4.5.0",
"cypress-plugin-tab": "^1.0.5",
"eslint": "^7.0.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^6.2.2",
"eslint-plugin-vuejs-accessibility": "^0.1.1",
"jest": "^26.0.1",
"npm-run-all": "^4.1.5",
"rollup": "^2.9.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-livereload": "^1.3.0",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-vue": "^5.1.6",
"standard-version": "^8.0.0",
"vue": "^2.6.11",
"vue-template-compiler": "^2.6.11",
"vuepress": "^1.4.1"
}
}