-
Notifications
You must be signed in to change notification settings - Fork 151
/
package.json
92 lines (92 loc) · 3.16 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
{
"name": "@vueform/multiselect",
"version": "2.6.11",
"private": false,
"description": "Vue 3 multiselect component with single select, multiselect and tagging options.",
"license": "MIT",
"author": "Adam Berecz <[email protected]>",
"main": "./dist/multiselect.js",
"types": "./src/index.d.ts",
"module": "./dist/multiselect.mjs",
"unpkg": "./dist/multiselect.global.js",
"jsdelivr": "./dist/multiselect.global.js",
"style": "./themes/default.css",
"exports": {
".": {
"types": "./src/index.d.ts",
"node": {
"import": {
"production": "./dist/multiselect.mjs",
"development": "./dist/multiselect.mjs",
"default": "./dist/multiselect.mjs"
},
"require": {
"production": "./dist/multiselect.js",
"development": "./dist/multiselect.js",
"default": "./dist/multiselect.js"
}
},
"import": "./dist/multiselect.mjs",
"require": "./dist/multiselect.js"
},
"./src/*": "./src/*",
"./dist/*": "./dist/*",
"./themes/*": "./themes/*",
"./package.json": "./package.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vueform/multiselect.git"
},
"bugs": {
"url": "https://github.com/vueform/multiselect/issues"
},
"scripts": {
"build": "npm run build:vue2; npm run build:vue3; npm run build:themes",
"build:vue2": "rollup --config build/vue2.rollup.config.js",
"build:vue3": "rollup --config build/vue3.rollup.config.js",
"build:themes": "rollup --config build/themes.rollup.config.js",
"test": "jest --config=jest/jest.config.vue3.js; jest --config=jest/jest.config.vue2.js;",
"test:vue2": "jest --verbose --config=jest/jest.config.vue2.js",
"test:vue3": "jest --verbose --config=jest/jest.config.vue3.js"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-transform-modules-umd": "^7.12.1",
"@babel/preset-env": "^7.12.10",
"@popperjs/core": "^2.11.8",
"@rollup/plugin-alias": "^3.1.1",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-node-resolve": "^15.2.3",
"@testing-library/jest-dom": "^5.11.5",
"@vue/compiler-sfc": "^3.0.4",
"autoprefixer": "^10.3.1",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^27.3.1",
"babel-plugin-rename-umd-globals": "^1.0.0",
"flush-promises": "^1.0.2",
"fraction.js": "^4.1.1",
"jest": "^27.3.1",
"jest-environment-jsdom-sixteen": "^1.0.3",
"node-sass": "^7.0.0",
"postcss": "^8.4.31",
"rollup": "^2.34.2",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.1.2",
"vue-next": "npm:vue@^3.2.20",
"vue-next-jest": "npm:@vue/vue3-jest@^27.0.0-alpha.1",
"vue-next-rollup-plugin-vue": "npm:rollup-plugin-vue@^6.0.0",
"vue-next-test-utils": "npm:@vue/[email protected]",
"vue-prev": "npm:vue@^2.7.8",
"vue-prev-jest": "npm:@vue/vue2-jest@^27.0.0-alpha.2",
"vue-prev-rollup-plugin-vue": "npm:rollup-plugin-vue@^5.1.9",
"vue-prev-test-utils": "npm:@vue/[email protected]",
"vue-template-compiler": "^2.7.8"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}