forked from Jexordexan/vue-slicksort
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 3.24 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "vue-slicksort",
"version": "2.0.5",
"description": "Set of mixins to turn any list into a sortable, touch-friendly, animated list",
"author": {
"name": "Jordan Simonds",
"email": "[email protected]"
},
"user": "jsimonds",
"homepage": "https://vue-slicksort.netlify.app",
"main": "dist/vue-slicksort.cjs.js",
"module": "dist/vue-slicksort.esm.js",
"browser": "dist/vue-slicksort.umd.js",
"unpkg": "dist/vue-slicksort.min.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Jexordexan/vue-slicksort.git"
},
"bugs": {
"url": "https://github.com/Jexordexan/vue-slicksort/issues"
},
"keywords": [
"vue",
"vuejs",
"vue-component",
"vue-mixin",
"sortable",
"sortable-list",
"list",
"sortable list",
"smooth",
"animated",
"mixin",
"component",
"react-sortable-hoc",
"vue-slicksort",
"vue-sort",
"vue-sortable",
"drag and drop",
"vue-slicksort"
],
"scripts": {
"start": "vite example",
"changelog": "standard-changelog",
"version": "npm run changelog && git add CHANGELOG.md",
"build": "npm run clean && npm run rollup",
"prepublishOnly": "npm run build",
"rollup": "cross-env BABEL_ENV=rollup rollup -c",
"clean": "rimraf dist/",
"test": "eslint src/** --ext .ts && npm run test:cy",
"cy": "cypress open --component",
"test:cy": "cypress run --component",
"deploy:alpha": "npm test && npm version prerelease --preid=alpha && npm run deploy:final",
"deploy:patch": "npm test && npm version patch && npm run deploy:final",
"deploy:final": "git push; git push --tags; npm publish",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs"
},
"peerDependencies": {
"vue": ">=3.0.0"
},
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/plugin-external-helpers": "^7.12.13",
"@babel/plugin-transform-regenerator": "^7.13.15",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.12.16",
"@cypress/vite-dev-server": "^4.0.1",
"@cypress/vue": "^5.0.1",
"@rollup/plugin-typescript": "^8.2.0",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"@vitejs/plugin-vue": "^3.2.0",
"@vitejs/plugin-vue-jsx": "^2.1.1",
"@vue/compiler-sfc": "^3.2.45",
"@vue/test-utils": "^2.0.0-rc.6",
"@vueuse/core": "^9.5.0",
"autoprefixer": "^6.3.6",
"cross-env": "^1.0.7",
"cssnano": "^3.10.0",
"cypress": "^11.1.0",
"esbuild": "^0.8.44",
"eslint": "^7.20.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-vue": "^7.6.0",
"postcss": "^8.2.6",
"rimraf": "^2.5.2",
"rollup": "^2.38.5",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-esbuild": "^2.6.1",
"sass": "^1.32.6",
"standard-changelog": "^2.0.27",
"typescript": "^4.2.3",
"vite": "^3.2.4",
"vitepress": "^1.0.0-alpha.46",
"vue": "^3.2.45",
"vuepress": "^2.0.0-alpha.23"
},
"browserslist": [
"> 1%",
"last 4 versions"
],
"files": [
"index.d.ts",
"dist/*"
],
"dependencies": {}
}