-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
83 lines (83 loc) · 2.78 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
{
"name": "@politico/vue-accessible-selects",
"version": "1.9.4",
"description": "Select & Multi Select implementations for Vue, focused especially on implementing accessibility best practices",
"files": [
"dist",
"styles"
],
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"start": "npm run storybook",
"test": "jest",
"build": "rm -rf dist && rm -rf styles && NODE_ENV=production rollup --config rollup.config.js",
"prepublishOnly": "npm test && npm run build && npm run shake",
"shake": "agadoo dist/index.js",
"storybook": "start-storybook -p 6006 --docs",
"build-storybook": "build-storybook --docs",
"postinstall": "echo 'VUE 2 SUPPORT WILL BE DEPRECATED AFTER DECEMBER 2024. Beginning in January 2025, we will publish version 2 of the Vue Accessible Selects library, which is compatible with Vue 3. Until then, you can access the Vue 3-compatible version published as the alpha version of this package.'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/politico/vue-accessible-selects.git"
},
"keywords": [
"select",
"multiselect",
"a11y",
"accessible",
"vue"
],
"contributors": [
"Liz Davidson (https://github.com/ldavidson45)",
"Chris Guirreri (https://github.com/guirreri)",
"Jack Koppa (https://github.com/jackkoppa)",
"Hung-Su Nguyen (https://github.com/hungsu)",
"Evan Sanderson (https://github.com/EvanSanderson)",
"Ivan Shtyrliaev (https://github.com/ee923925github)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/politico/vue-accessible-selects/issues"
},
"homepage": "https://github.com/politico/vue-accessible-selects#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-optional-chaining": "^7.13.12",
"@babel/preset-env": "^7.12.11",
"@storybook/addon-actions": "^6.0.21",
"@storybook/addon-docs": "^6.1.14",
"@storybook/addon-essentials": "^6.0.21",
"@storybook/addon-links": "^6.0.21",
"@storybook/vue": "^6.0.21",
"@types/jest": "^26.0.19",
"@vue/test-utils": "^1.1.2",
"agadoo": "^2.0.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.1.0",
"core-js": "^3.6.5",
"jest": "^26.6.3",
"react-is": "^16.13.1",
"rollup": "^2.26.11",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-typescript2": "^0.27.2",
"rollup-plugin-vue": "^5.1.9",
"sass": "^1.43.4",
"sass-loader": "^10.0.2",
"ts-jest": "^26.4.4",
"typescript": "^4.0.2",
"vue": "^2.6.11",
"vue-jest": "^3.0.7",
"vue-loader": "^15.9.3",
"vue-template-compiler": "^2.6.11"
},
"peerDependencies": {
"vue": "2.x"
}
}