-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathpackage.json
69 lines (69 loc) · 1.7 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
{
"name": "vue-cli-plugin-s3-deploy",
"version": "4.0.0-rc4",
"description": "A vue-cli plugin for deploying your built Vue app to an S3 bucket.",
"scripts": {
"test": "AWS_ACCESS_KEY_ID=access-key AWS_SECRET_ACCESS_KEY=secret-key jest --verbose src/test",
"watch-test": "AWS_ACCESS_KEY_ID=access-key AWS_SECRET_ACCESS_KEY=secret-key jest --watch src/test",
"build": "rm -rf ./dist && babel src/*.js --presets @babel/preset-env --out-dir ./",
"build-watch": "babel src/*.js --watch --presets @babel/preset-env --out-dir ./",
"prepublish": "yarn build"
},
"keywords": [
"vue",
"vuejs",
"cli",
"plugin",
"s3",
"aws",
"cloudfront",
"deploy",
"deployment"
],
"main": "index.js",
"homepage": "https://github.com/multiplegeorges/vue-cli-plugin-s3-deploy",
"author": {
"name": "Georges Gabereau",
"email": "[email protected]",
"url": "https://georg.es"
},
"license": "MIT",
"private": false,
"babel": {
"presets": [
"@babel/preset-env"
]
},
"dependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@vue/cli-shared-utils": "^3.4.0",
"aws-sdk": "^2.225.1",
"babel-core": "^7.0.0-bridge",
"es6-promise-pool": "^2.5.0",
"fs-extra": "^7.0.1",
"globby": "^8.0.1",
"joi": "^14.0.2",
"lodash": "^4.17.11",
"mime-types": "^2.1.18"
},
"devDependencies": {
"babel-jest": "^23.6.0",
"jest": "^23.6.0"
},
"files": [
"index.js",
"prompts.js",
"generator.js",
"deployer.js",
"configuration.js",
"bucket.js",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=8"
}
}