UNPKG

1.4 kBJSONView Raw
1{
2 "name": "@voila/cli",
3 "version": "0.1.5",
4 "description": "The easiest way to deploy to AWS",
5 "keywords": [
6 "aws",
7 "serverless",
8 "microservice",
9 "api",
10 "lambda",
11 "s3",
12 "static",
13 "website",
14 "hosting",
15 "javascript",
16 "cloud",
17 "deployment",
18 "deploy"
19 ],
20 "author": "Manuel Vila <mvila@3base.com>",
21 "license": "MIT",
22 "files": [
23 "dist"
24 ],
25 "main": "dist/index.js",
26 "bin": {
27 "voila": "dist/bin/index.js"
28 },
29 "repository": {
30 "type": "git",
31 "url": "git://github.com/voilajs/voila"
32 },
33 "scripts": {
34 "transpile": "babel src --out-dir dist",
35 "prepublish": "npm run transpile",
36 "lint": "eslint src"
37 },
38 "babel": {
39 "presets": [
40 [
41 "env",
42 {
43 "targets": {
44 "node": 4
45 },
46 "loose": true,
47 "exclude": [
48 "transform-regenerator"
49 ]
50 }
51 ]
52 ]
53 },
54 "eslintConfig": {
55 "extends": "eslint-config-next"
56 },
57 "dependencies": {
58 "child-process-promise": "^2.2.0",
59 "fs-promise": "^1.0.0",
60 "minimist": "^1.2.0",
61 "node-version": "^1.0.0",
62 "update-notifier": "^1.0.3",
63 "@voila/common": "^0.1.5"
64 },
65 "devDependencies": {
66 "babel-cli": "^6.22.2",
67 "babel-eslint": "^7.1.1",
68 "babel-preset-env": "^1.1.8",
69 "eslint": "^3.14.1",
70 "eslint-config-next": "^0.1.15"
71 }
72}