-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.93 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
57
58
59
60
61
62
63
64
65
{
"name": "envilder",
"version": "0.2.2",
"description": "A CLI tool to generate .env files from AWS SSM parameters",
"exports": {
".": {
"types": "./lib/index.d.ts"
}
},
"bin": {
"envilder": "lib/cli/cliRunner.js"
},
"scripts": {
"clean": "rimraf lib",
"test-run": "npm run build && node lib/cli/cliRunner.js --map=tests/sample/param_map.json --envfile=.env",
"build": "npm run clean && tsc -p tsconfig.build.json --sourceMap --declaration",
"lint": "biome lint --write && biome format --write && biome check --write && tsc --noEmit && secretlint **/*",
"test": "vitest run --reporter verbose --coverage",
"cli-run": "npm run build && node --trace-warnings lib",
"npm-publish": "npm run lint && npm run build && npm publish",
"npm-release-patch": "npm version patch && npm run npm-publish",
"npm-release-minor": "npm version minor && npm run npm-publish",
"npm-release-prerelease": "npm version prerelease && npm run npm-publish"
},
"keywords": [],
"repository": {
"type": "git",
"url": "git://github.com/macalbert/envilder.git"
},
"bugs": {
"url": "https://github.com/macalbert/envilder/issues"
},
"author": "Marçal Albert <[email protected]>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"type": "module",
"dependencies": {
"@aws-sdk/client-ssm": "^3.654.0",
"@secretlint/core": "^8.2.4",
"@secretlint/secretlint-rule-preset-recommend": "^8.2.4",
"@types/node": "^22.5.5",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"picocolors": "^1.1.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.1",
"@vitest/coverage-v8": "^2.1.1",
"rimraf": "^6.0.1",
"secretlint": "^8.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"vitest": "^2.1.2"
},
"resolutions": {
"string-width": "4.2.3",
"strip-ansi": "6.0.1"
},
"engines": {
"node": ">=20.0.0",
"yarn": ">=1.22"
}
}