-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 2.63 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
95
96
97
98
99
100
101
102
{
"name": "@joblocal/vue-bucket-loader",
"version": "1.4.0",
"main": "./dist/index.js",
"license": "MIT",
"author": "Joblocal GmbH",
"files": [
"dist",
"src"
],
"keywords": [
"vue",
"AWS S3",
"file upload",
"SSR"
],
"scripts": {
"start": "webpack-dev-server --open --hot",
"prebuild": "rm -rf dist && npm run validate",
"prepublishOnly": "npm run build",
"build": "webpack -p",
"test": "jest src",
"test:watch": "npm test -- --watch --onlyChanged",
"test:coverage": "npm test -- --coverage",
"lint": "eslint . --ext js,vue --ignore-path .gitignore",
"validate": "npm-run-all --parallel lint test"
},
"peerDependencies": {
"vue": "^2.5.13"
},
"devDependencies": {
"@vue/test-utils": "1.0.0-beta.30",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-jest": "23",
"babel-loader": "^7.1.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "5",
"eslint-config-airbnb-base": "13",
"eslint-import-resolver-webpack": "0.10.1",
"eslint-loader": "^2.0.0",
"eslint-plugin-html": "^4.0.2",
"eslint-plugin-import": "^2.9.0",
"html-webpack-plugin": "^3.0.6",
"jest": "23",
"npm-run-all": "^4.1.2",
"pre-push": "^0.1.1",
"vue": "^2.5.13",
"vue-jest": "^2.2.1",
"vue-loader": "^15.7.0",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.1.1",
"webpack-cli": "3",
"webpack-dev-server": "^3.1.0"
},
"pre-push": {
"run": "validate",
"silent": true
},
"jest": {
"testURL": "http://localhost/",
"collectCoverageFrom": [
"src/**/*.{js,vue}",
"!src/**/*.(test|spec).js"
],
"coverageThreshold": {
"global": {
"statements": 98,
"branches": 91,
"functions": 98,
"lines": 98
}
},
"moduleNameMapper": {
"^src/(.*/[A-Z].+)$": "<rootDir>/src/$1.vue"
},
"transform": {
"^.*\\.(vue)$": "<rootDir>/node_modules/vue-jest",
"^.+\\.(js)$": "<rootDir>/node_modules/babel-jest"
}
},
"engines": {
"node": ">= 10.15.3"
},
"dependencies": {
"axios": "^0.19.0"
},
"description": "This Project provides a SSR compatible vue component which can handle file upload / deleting directly to / from a AWS S3 Bucket.",
"directories": {
"doc": "docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joblocal/vue-bucket-loader.git"
},
"bugs": {
"url": "https://github.com/joblocal/vue-bucket-loader/issues"
},
"homepage": "https://github.com/joblocal/vue-bucket-loader#readme"
}