UNPKG

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