-
-
Notifications
You must be signed in to change notification settings - Fork 249
/
package.json
81 lines (81 loc) · 1.93 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
{
"name": "vue-smooth-dnd",
"version": "0.8.1",
"description": "Vue wrappers for smooth-dnd",
"author": "Kutlu Sahin",
"homepage": "https://kutlugsahin.github.io/vue-smooth-dnd/",
"repository": {
"type": "git",
"url": "https://github.com/kutlugsahin/vue-smooth-dnd"
},
"contributors": [
{
"name": "Dave Stewart",
"url": "https://github.com/davestewart"
}
],
"keywords": [
"Vue",
"Vue.js",
"sortable",
"drag and drop",
"drag&drop",
"drag",
"drop",
"draggable",
"dnd",
"smooth-dnd"
],
"main": "dist/vue-smooth-dnd.js",
"module": "dist/vue-smooth-dnd.esm.js",
"jsnext:main": "dist/vue-smooth-dnd.esm.js",
"files": [
"dist/*"
],
"scripts": {
"dev": "rollup -c build/rollup.js -w",
"build": "rollup -c build/rollup.js",
"demo": "cd demo && npm run dev",
"lint": "./node_modules/.bin/eslint src/*",
"test": "jest --watchAll --verbose",
"unit": "jest --config jest.config.js --coverage"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/kutlugsahin/vue-smooth-dnd/issues"
},
"dependencies": {
"smooth-dnd": "0.12.1"
},
"devDependencies": {
"babel-jest": "^23.4.0",
"cross-env": "^5.2.0",
"eslint": "^5.6.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^23.4.1",
"rollup": "^0.67.3",
"rollup-plugin-buble": "^0.19.1",
"rollup-plugin-commonjs": "^8.4.1",
"rollup-plugin-license": "^0.6.0",
"rollup-plugin-typescript2": "0.14.0",
"rollup-plugin-uglify": "^3.0.0"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}