-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 955 Bytes
/
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
{
"name": "@b1kt0p/dotenv-generator",
"version": "0.0.3",
"description": "Generate dotenv file from AWS System Parameters template",
"main": "./lib/index.js",
"files": [
"lib",
"src"
],
"bin": {
"dotenv-generator": "./lib/index.js"
},
"scripts": {
"build": "BABEL_ENV=production babel src --out-dir lib",
"prepublish": "rm -rf ./lib && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Biktop/dotenv-generator.git"
},
"keywords": [
"AWS",
"dotenv"
],
"author": "Victor Savostin",
"license": "MIT",
"bugs": {
"url": "https://github.com/Biktop/dotenv-generator/issues"
},
"homepage": "https://github.com/Biktop/dotenv-generator#readme",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-preset-minify": "^0.5.1"
},
"peerDependencies": {
"aws-sdk": "^2.282.1"
}
}