generated from hackcode-packages/minimal-package-template
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 834 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 834 Bytes
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
{
"name": "@hackcode/env-example-generator",
"version": "1.0.1",
"description": "simple cli script to extract all environment variables being used in code",
"main": "dist/app.js",
"scripts": {
"build": "tsc",
"start": "node dist/app.js"
},
"repository": {
"type": "git",
"url": "https://github.com/hackcode-packages/env-example-generator"
},
"keywords": [
"env",
"file",
"generator",
"hackcode"
],
"bin": {
"generate-env": "dist/app.js"
},
"author": "YashKumarVerma <yk.verma2000@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/node": "^14.11.2",
"@types/recursive-readdir": "^2.2.0",
"@types/strip-comments": "^2.0.0",
"typescript": "^4.0.2"
},
"dependencies": {
"recursive-readdir": "^2.2.2",
"strip-comments": "^2.0.1"
}
}