UNPKG

1.62 kBJSONView Raw
1{
2 "name": "@voila/module",
3 "displayName": "Voilà Module",
4 "version": "0.3.6",
5 "description": "The easiest way to deploy your backend to AWS",
6 "keywords": [
7 "aws",
8 "serverless",
9 "microservice",
10 "api",
11 "backend",
12 "lambda",
13 "hosting",
14 "javascript",
15 "cloud",
16 "deployment",
17 "deploy"
18 ],
19 "author": "Manuel Vila <mvila@3base.com>",
20 "license": "MIT",
21 "files": [
22 "dist"
23 ],
24 "main": "dist/index.js",
25 "bin": {
26 "voila-module": "dist/bin/index.js"
27 },
28 "repository": {
29 "type": "git",
30 "url": "git://github.com/voilajs/voila"
31 },
32 "scripts": {
33 "prepublish": "npm run transpile",
34 "transpile": "babel src --out-dir dist"
35 },
36 "babel": {
37 "presets": [
38 [
39 "env",
40 {
41 "targets": {
42 "node": 4
43 },
44 "loose": true,
45 "exclude": [
46 "transform-regenerator"
47 ]
48 }
49 ]
50 ],
51 "plugins": [
52 "transform-object-rest-spread"
53 ]
54 },
55 "dependencies": {
56 "@voila/common": "^0.3.5",
57 "archiver": "^1.3.0",
58 "aws-sdk": "^2.12.0",
59 "babel-plugin-transform-object-rest-spread": "^6.23.0",
60 "babel-preset-env": "^1.1.8",
61 "bytes": "^2.4.0",
62 "fs-promise": "^1.0.0",
63 "lodash.isequal": "^4.5.0",
64 "minimist": "^1.2.0",
65 "rollup": "^0.41.4",
66 "rollup-plugin-babel": "^2.7.1",
67 "rollup-plugin-commonjs": "^7.0.0",
68 "rollup-plugin-json": "^2.1.0",
69 "rollup-plugin-node-resolve": "^2.0.0",
70 "sleep-promise": "^2.0.0",
71 "stream-buffers": "^3.0.1"
72 },
73 "devDependencies": {
74 "babel-cli": "^6.22.2"
75 }
76}