-
Notifications
You must be signed in to change notification settings - Fork 83
/
package.json
63 lines (63 loc) · 1.97 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
{
"name": "vue-drag-drop",
"description": "A lightweight Vue wrapper that abstracts away the wonkier parts of the Drag and Drop Browser API",
"version": "1.1.4",
"author": {
"name": "J. Cameron McDonald",
"email": "cameronhimself@gmail.com"
},
"files": [
"dist",
"types/*.d.ts"
],
"typings": "types/index.d.ts",
"keywords": [
"vue",
"vuejs",
"plugin"
],
"license": "MIT",
"main": "dist/vue-drag-drop.common.js",
"unpkg": "dist/vue-drag-drop.browser.js",
"module": "dist/vue-drag-drop.common.js",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack --config config/webpack.config.dev.js --progress --watch",
"build": "npm run build:browser && npm run build:common",
"build:browser": "cross-env NODE_ENV=production webpack --config config/webpack.config.browser.js --progress --hide-modules",
"build:common": "cross-env NODE_ENV=production webpack --config config/webpack.config.common.js --progress --hide-modules",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cameronhimself/vue-drag-drop.git"
},
"bugs": {
"url": "https://github.com/cameronhimself/vue-drag-drop/issues"
},
"homepage": "https://github.com/cameronhimself/vue-drag-drop#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"cross-env": "^5.0.5",
"css-loader": "^0.28.5",
"eslint": "^4.5.0",
"eslint-config-genius": "^0.1.4",
"eslint-loader": "^1.9.0",
"eslint-plugin-html": "^3.2.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"node-sass": "^4.5.3",
"sass-loader": "^6.0.6",
"vue-loader": "^13.0.4",
"vue-template-compiler": "^2.4.2",
"webpack": "^3.5.5",
"webpack-merge": "^4.1.0"
},
"dependencies": {
"core-js": "^2.5.3"
}
}