-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.29 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
50
51
52
53
54
{
"name": "@redtea/serverless-env-generator",
"version": "3.0.2",
"engines": {
"node": ">=14.x.x"
},
"files": [
"src/**/*.js"
],
"description": "Fork of https://github.com/DieProduktMacher/serverless-env-generator with more advanced YAML anchors supporting",
"author": "Kirill Khoroshilov <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/org-redtea/serverless-env-generator"
},
"keywords": [
"serverless",
"env",
"environment",
"credentials",
"secrets",
"environment variables",
"aws",
"kms"
],
"main": "src/index.js",
"scripts": {
"test:e2e": "mocha --timeout 10000 ./test/e2e/**/*.test.js",
"test:unit": "mocha --timeout 10000 ./test/unit/**/*.test.js",
"test": "mocha --timeout 10000 ./test/**/*.test.js",
"lint": "standard"
},
"dependencies": {
"aws-sdk": "2.924.0",
"dotenv": "10.0.0",
"fs-extra": "10.0.0",
"yaml": "2.0.0-0"
},
"devDependencies": {
"chai": "^4.0.0",
"chai-as-promised": "^7.1.1",
"etl": "0.6.12",
"execa": "5.1.1",
"mocha": "^3.4.2",
"serverless": "3.x.x",
"sinon": "^2.3.2",
"standard": "^10.0.2",
"unzipper": "0.10.11"
},
"peerDependencies": {
"serverless": "4.x.x || 3.x.x"
}
}