forked from mrtrom/genvv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 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
50
51
52
53
54
55
56
{
"name": "genvv",
"version": "0.2.4",
"description": "Genearte .env files based on data sources",
"bin": {
"genvv": "bin/genvv"
},
"main": "bin/genvv",
"scripts": {
"test": "jest test",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrtrom/genvv.git"
},
"keywords": [
"aws",
"secrets",
"credentials",
"vault",
"heroku",
"env"
],
"author": "Alexander Ochoa",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/mrtrom/genvv/issues"
},
"homepage": "https://github.com/mrtrom/genvv#readme",
"dependencies": {
"aws-sdk": "^2.1028.0",
"axios": "^0.24.0",
"minimist": "^1.2.5"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^16.11.7",
"@types/sinon": "^10.0.6",
"aws-sdk-mock": "^5.4.0",
"eslint": "^8.2.0",
"eslint-plugin-import": "^2.25.3",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"sinon": "^12.0.1",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}