-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.74 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
{
"name": "envolve",
"version": "1.2.4",
"description": "Envolve CLI is a powerful tool for managing environment variables in your projects. It allows you to easily create, update, compare, and sync environment files across different services.",
"main": "index.ts",
"scripts": {
"build": "tsc",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"serve": "node dist/index.js",
"start": "tsc && npm run serve",
"test": "jest --forceExit --verbose --detectOpenHandles --coverage --coverageReporters=text-summary"
},
"homepage": "https://erdemkosk.github.io/envolve-app/",
"keywords": [
"cli",
"environment-variable",
"env",
"cli-app",
"cli-tool",
"env-vars",
"env-file"
],
"author": "",
"license": "ISC",
"dependencies": {
"chalk": "4.0.0",
"cli-table3": "^0.6.3",
"commander": "^11.1.0",
"consola": "^3.2.3",
"date-fns": "^2.30.0",
"inquirer": "^8.2.6",
"inquirer-autocomplete-prompt": "^2.0.1",
"table": "^6.8.1",
"update-notifier": "^4.0.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/eslint": "^8.44.6",
"@types/inquirer": "^9.0.7",
"@types/inquirer-autocomplete-prompt": "^3.0.2",
"@types/jest": "^29.5.6",
"@types/node": "^20.8.9",
"@types/update-notifier": "^6.0.8",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.53.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.2.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"bin": {
"envolve": "./dist/index.js"
}
}