-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.46 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.46 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@legislato/env-example-generator",
"version": "0.0.0",
"description": "A package that generates .env.example files. It reads a .env file, and remove all the values, keeping only the keys. Allowing the user to create a template of the enviroment variables",
"license": "MIT",
"author": "João Paulo de Faveri",
"homepage": "https://www.legislato.com.br",
"repository": {
"type": "git",
"url": "https://github.com/joaofaveri/env-example-generator.git"
},
"keywords": [
"dotenv",
".env",
"environment variables",
"configuration",
"example",
"generator",
"keys",
"automation",
"boilerplate",
"dotenv example generator",
"generate .env template"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.js",
"bin": {
"env-example-generator": "./dist/index.js"
},
"scripts": {
"build": "tsup",
"lint": "eslint --fix",
"test": "jest",
"prepare": "husky",
"release": "npm run test && npm run build && dotenv release-it -- --verbose",
"release:no-npm": "npm run test && dotenv release-it -- --no-npm.publish",
"release:changelog": "npm run test && npm run build && dotenv release-it -- --changelog",
"release:version": "npm run test && npm run build && dotenv release-it -- --release-version"
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@eslint/js": "^9.21.0",
"@eslint/json": "^0.10.0",
"@jest/globals": "^29.7.0",
"@release-it/conventional-changelog": "^10.0.0",
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.5",
"commitizen": "^4.3.1",
"conventional-changelog-conventionalcommits": "^8.0.0",
"dotenv-cli": "^8.0.0",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.0.2",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-prettier": "^5.2.3",
"git-cz": "^4.9.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.4.3",
"prettier": "^3.5.2",
"release-it": "^18.1.2",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"tsup": "^8.4.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.25.0"
},
"config": {
"commitizen": {
"path": "./node_modules/git-cz"
}
},
"engines": {
"node": ">=22"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"commander": "^13.1.0",
"inquirer": "^9.3.7",
"ora": "^5.4.1"
}
}