-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
49 lines (49 loc) · 1.25 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
{
"name": "serverless-env-generator",
"version": "1.4.0",
"engines": {
"node": ">=8.0"
},
"description": "A Serverless 1.x plugin to automatically create a .env file during deployment by merging environment variables from one or more YAML files. Variables can be securely encrypted with KMS. Multiple stages and profiles are supported.",
"author": "DieProduktMacher <www.dieproduktmacher.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DieProduktMacher/serverless-env-generator"
},
"keywords": [
"serverless",
"env",
"environment",
"credentials",
"secrets",
"environment variables",
"aws",
"kms"
],
"main": "src/index.js",
"scripts": {
"test": "nyc mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "standard"
},
"dependencies": {
"aws-sdk": "^2.273.1",
"dotenv": "^7.0.0",
"fs-extra": "^6.0.1",
"js-yaml": "^3.12.0"
},
"devDependencies": {
"chai": "^4.0.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.5",
"mocha": "^3.4.2",
"nyc": "^10.3.2",
"serverless": "^1.14.0",
"sinon": "^2.3.2",
"standard": "^10.0.2"
},
"peerDependencies": {
"serverless": "^1.14.0"
}
}