forked from Astray-git/vue-dragula
-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
46 lines (46 loc) · 1.2 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
{
"name": "vue2-dragula",
"version": "2.5.5",
"description": "Vue 2 wrapper for dragula",
"main": "dist/vue-dragula.js",
"files": [
"dist",
"src",
"styles"
],
"author": "Kristian Mandrup",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kristianmandrup/vue2-dragula.git"
},
"scripts": {
"dev": "webpack --watch example/example.js example/example.build.js",
"build": "node build/build.js",
"lint": "eslint src"
},
"dependencies": {
"dragula": "3.7.2"
},
"devDependencies": {
"babel-core": "^6.2.1",
"babel-loader": "^6.2.0",
"babel-plugin-transform-runtime": "^6.1.18",
"babel-polyfill": "^6.2.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-es2015-rollup": "^1.1.1",
"babel-preset-stage-2": "^6.1.18",
"babel-runtime": "^5.8.0",
"eslint": "^2.2.0",
"eslint-config-standard": "^5.1.0",
"eslint-plugin-promise": "^1.0.8",
"eslint-plugin-standard": "^1.3.2",
"rollup": "^0.25.4",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^3.3.1",
"rollup-plugin-node-resolve": "^2.0.0",
"uglify-js": "^2.6.2",
"vue": "^2.1.8",
"webpack": "^1.12.9"
}
}