UNPKG

2.12 kBJSONView Raw
1{
2 "name": "@apr/cfn-deploy",
3 "version": "5.4.14",
4 "description": "CloudFormation templates deployment",
5 "scripts": {
6 "prepare": "babel lib/ --out-dir compiled",
7 "start": "babel-node lib/cli/index.js cfn/runtime/cfnd.yml"
8 },
9 "main": "compiled/deploy.js",
10 "bin": {
11 "cfn-deploy": "./bin/cfn-deploy.js"
12 },
13 "files": [
14 "lib",
15 "compiled",
16 "bin/cfn-deploy.js"
17 ],
18 "author": "Dmitry Tyschenko",
19 "license": "UNLICENSED",
20 "dependencies": {
21 "archiver": "^1.3.0",
22 "aws-sdk": "^2.7.8",
23 "babel-runtime": "^6.22.0",
24 "browserify": "^13.1.1",
25 "colors": "^1.1.2",
26 "columnify": "^1.5.4",
27 "glob-all": "^3.1.0",
28 "hasha": "^2.2.0",
29 "hashids": "^1.1.1",
30 "inquirer": "^2.0.0",
31 "js-yaml": "^3.7.0",
32 "map-obj": "^2.0.0",
33 "moment": "^2.17.1",
34 "mustache": "^2.3.0",
35 "ora": "^0.4.1",
36 "pad-right": "^0.2.2",
37 "sander": "^0.6.0",
38 "temp": "^0.8.3",
39 "uuid": "^3.0.1",
40 "yargs": "^6.5.0"
41 },
42 "devDependencies": {
43 "@rainydio/eslint-config": "^2.2.3",
44 "babel-cli": "^6.22.2",
45 "babel-eslint": "^7.2.1",
46 "babel-plugin-syntax-async-functions": "^6.13.0",
47 "babel-plugin-transform-export-extensions": "^6.22.0",
48 "babel-plugin-transform-function-bind": "^6.22.0",
49 "babel-plugin-transform-object-rest-spread": "^6.22.0",
50 "babel-plugin-transform-regenerator": "^6.22.0",
51 "babel-plugin-transform-runtime": "^6.22.0",
52 "babel-preset-latest": "^6.22.0",
53 "eslint": "^4.8.0",
54 "eslint-plugin-babel": "^4.1.1",
55 "eslint-plugin-import": "^2.2.0"
56 },
57 "eslintConfig": {
58 "parserOptions": {
59 "ecmaVersion": 8
60 },
61 "extends": "@rainydio/eslint-config"
62 },
63 "babel": {
64 "presets": [
65 [
66 "latest",
67 {
68 "es2015": {
69 "loose": true
70 }
71 }
72 ]
73 ],
74 "plugins": [
75 "syntax-async-functions",
76 "transform-export-extensions",
77 "transform-function-bind",
78 "transform-object-rest-spread",
79 "transform-runtime",
80 "transform-regenerator"
81 ]
82 },
83 "publishConfig": {
84 "access": "public"
85 }
86}