This repository has been archived by the owner on Sep 23, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
94 lines (94 loc) · 2.89 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
{
"name": "vue-auto-dropzone",
"version": "0.2.0",
"private": false,
"description": "Vue 2 Dropzone.js component",
"author": "Karl Tarvas <[email protected]> (https://www.karltarvas.com)",
"scripts": {
"serve": "vue-cli-service serve",
"build": "yarn build:component && yarn build:lib",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint --fix",
"build:component": "ts-node src/node/index.ts && yarn lint",
"build:component:watch": "npm-watch build:component",
"build:lib": "vue-cli-service build --target lib --name index src/component/VueAutoDropzone.vue",
"build:watch": "npm-watch build",
"prepublishOnly": "yarn build && yarn test",
"serve:build": "yarn build:component && yarn serve",
"test": "yarn test:unit",
"test:component": "yarn build:component && yarn test:unit"
},
"main": "./dist/index.umd.js",
"dependencies": {
"@types/dropzone": "^5.0.6",
"core-js": "^3.6.4",
"dropzone": "^5.7.0",
"extract-css-chunks-webpack-plugin": "^4.7.4",
"npm-watch": "^0.6.0",
"null-loader": "^3.0.0",
"typescript": "3.6.4",
"vue": "^2.6.10"
},
"devDependencies": {
"@babel/parser": "^7.6.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/traverse": "^7.6.3",
"@types/chai": "^4.1.0",
"@types/mocha": "^5.2.4",
"@vue/cli-plugin-babel": "~4.2.2",
"@vue/cli-plugin-e2e-cypress": "~4.2.2",
"@vue/cli-plugin-eslint": "~4.2.2",
"@vue/cli-plugin-typescript": "^3.11.0",
"@vue/cli-plugin-unit-mocha": "^3.11.0",
"@vue/cli-service": "~4.2.2",
"@vue/eslint-config-standard": "^4.0.0",
"@vue/eslint-config-typescript": "^4.0.0",
"@vue/test-utils": "1.0.0-beta.29",
"babel-eslint": "^10.0.1",
"chai": "^4.1.2",
"eslint": "^5.16.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-vue": "^5.0.0",
"jsdom": "^15.1.1",
"jsdom-global": "^3.0.2",
"prettier": "^1.18.2",
"sass": "^1.18.0",
"sass-loader": "^7.1.0",
"sinon": "^7.5.0",
"ts-node": "^8.4.1",
"vue-class-component": "^7.0.2",
"vue-property-decorator": "^8.2.2",
"vue-template-compiler": "^2.6.10"
},
"bugs": {
"url": "https://github.com/Etheryte/vue-auto-dropzone/issues"
},
"homepage": "https://github.com/Etheryte/vue-auto-dropzone",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Etheryte/vue-auto-dropzone.git"
},
"types": "./types/VueAutoDropzone.vue.d.ts",
"watch": {
"build:component": {
"patterns": [
"src"
],
"extensions": "ts,vue,css",
"ignore": [
"src/component/VueAutoDropzone.vue",
"src/component/vueAutoDropzone.css"
]
},
"build": {
"patterns": [
"src"
],
"extensions": "ts,vue,css",
"ignore": [
"src/component/VueAutoDropzone.vue",
"src/component/vueAutoDropzone.css"
]
}
}
}