-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.39 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
{
"name": "@abhinavvv/dotgenv",
"version": "0.1.1",
"description": "A Global secrets manager",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "ts-node src/index.ts",
"test": "jest",
"lint": "eslint . --ext .ts",
"prettier": "prettier --write .",
"prettier:check": "prettier --check ."
},
"bin": {
"dotgenv": "./dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sweetdevil144/dotgenv.git"
},
"keywords": [
"env",
"environment variables",
"configuration",
"secrets",
"api keys"
],
"author": "Abhinav Pandey",
"license": "MIT",
"bugs": {
"url": "https://github.com/Sweetdevil144/dotgenv/issues"
},
"homepage": "https://github.com/Sweetdevil144/dotgenv#readme",
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/inquirer": "^9.0.6",
"@types/jest": "^29.5.6",
"@types/node": "^20.8.3",
"@types/yargs": "^17.0.29",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^29.7.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"chalk": "^5.3.0",
"inquirer": "^9.2.11",
"yargs": "^17.7.2"
}
}