-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
73 lines (73 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
{
"name": "@unicorns/uploader",
"description": "Simple File Uploading for Vue",
"version": "2.0.3",
"author": "Unicorn Global et al",
"private": false,
"license": "MIT",
"scripts": {
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"test": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text mocha-webpack --webpack-config webpack.config.js --require test/setup.js test/**/*.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UnicornGlobal/uploader"
},
"files": [
"index.js",
"index.js.map"
],
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@vue/test-utils": "1.0.0-beta.29",
"ajv": "^6.12.0",
"axios": "^0.19.2",
"babel-loader": "^8.0.6",
"babel-plugin-istanbul": "^5.2.0",
"chai": "^4.2.0",
"codecov": "^3.6.5",
"cross-env": "^6.0.3",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"istanbul-instrumenter-loader": "^3.0.1",
"jsdom": "15.1.1",
"jsdom-global": "^3.0.2",
"mocha": "^6.2.2",
"mocha-webpack": "^2.0.0-beta.0",
"node-sass": "^4.13.1",
"nyc": "^14.1.1",
"sass-loader": "^8.0.2",
"sinon": "^7.5.0",
"sinon-chai": "^3.5.0",
"style-loader": "^1.1.3",
"uglifyjs-webpack-plugin": "^2.2.0",
"vee-validate": "^3.2.5",
"vue": "2.6.10",
"vue-axios": "^2.1.5",
"vue-loader": "^15.9.0",
"vue-svg-loader": "^0.12.0",
"vue-template-compiler": "2.6.10",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-merge": "^4.2.2",
"webpack-node-externals": "^1.7.2"
},
"nyc": {
"include": [
"src/*.vue"
],
"instrument": false,
"check-coverage": true,
"per-file": true,
"reporter": [
"lcov",
"text-summary"
],
"sourceMap": false
},
"dependencies": {
"vue-advanced-cropper": "^0.16.0"
}
}