-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
66 lines (66 loc) · 2.39 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
{
"name": "@vueform/toggle",
"version": "2.1.4",
"private": false,
"description": "Vue 3 toggle component with labels, custom slots and styling options.",
"license": "MIT",
"author": "Adam Berecz <[email protected]>",
"main": "./dist/toggle.js",
"types": "./src/index.d.ts",
"module": "./dist/toggle.js",
"unpkg": "./dist/toggle.global.js",
"style": "./themes/default.css",
"repository": {
"type": "git",
"url": "git+https://github.com/vueform/toggle.git"
},
"bugs": {
"url": "https://github.com/vueform/toggle/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",
"@rollup/plugin-alias": "^3.1.1",
"@rollup/plugin-babel": "^5.2.2",
"@testing-library/jest-dom": "^5.11.5",
"@vue/compiler-sfc": "^3.0.4",
"autoprefixer": "^10.1.0",
"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",
"jest": "^27.3.1",
"jest-environment-jsdom-sixteen": "^1.0.3",
"node-sass": "^7.0.0",
"postcss": "^8.2.1",
"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.6.14",
"vue-prev-composition-api": "npm:@vue/composition-api@^1.2.4",
"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.6.14"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}