-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
72 lines (72 loc) · 1.96 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
{
"name": "vue-drag-n-drop",
"version": "1.3.0",
"private": false,
"description": "A simple kanban board where the items can be dragged and dropped from the list. This is a hybrid implementation of vue-smooth-dnd.",
"scripts": {
"serve": "vue-cli-service serve",
"build": "npm run build:umd & npm run build:es & npm run build:unpkg",
"test": "vue-cli-service test:unit",
"build:es": "rollup --config build/rollup.config.js --format es --file dist/vue-drag-n-drop.esm.js",
"build:umd": "rollup --config build/rollup.config.js --format umd --file dist/vue-drag-n-drop.umd.js",
"build:unpkg": "rollup --config build/rollup.config.js --format iife --file dist/vue-drag-n-drop.min.js"
},
"main": "dist/vue-drag-n-drop.umd.js",
"module": "dist/vue-drag-n-drop.esm.js",
"browser": {
"./sfc": "src/vue-drag-n-drop.vue"
},
"unpkg": "dist/vue-drag-n-drop.min.js",
"files": [
"dist/*"
],
"husky": {
"hooks": {
"pre-commit": "npm test"
}
},
"dependencies": {
"lodash": "^4.17.13",
"vue-smooth-dnd": "^0.2.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.2.0",
"@vue/cli-plugin-unit-jest": "~4.3.0",
"@vue/cli-service": "~4.2.0",
"@vue/test-utils": "1.0.0-beta.31",
"rollup": "^1.17.0",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-vue": "^5.0.1",
"sinon": "^9.0.1",
"vue": "^2.6.11",
"vue-template-compiler": "^2.6.11"
},
"bugs": {
"url": "https://github.com/smaharj1/vue-drag-and-drop-kanban/issues"
},
"contributors": [
{
"name": "Sujil Maharjan",
"url": "https://github.com/smaharj1"
}
],
"keywords": [
"Vue",
"Vue.js",
"sortable",
"drag and drop",
"drag&drop",
"drag",
"drop",
"draggable",
"dnd",
"kanban",
"smooth-dnd"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/smaharj1/vue-drag-and-drop-kanban"
}
}