-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 2.87 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "projex",
"version": "1.40.0",
"description": "A command line to manage the workflow",
"keywords": [
"cli",
"projex",
"vtex",
"git",
"bash",
"pull-request",
"workflow",
"release",
"semver",
"devops"
],
"homepage": "",
"bugs": {
"url": "https://github.com/Maik3345/projex-toolbet/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Maik3345/projex-toolbet"
},
"license": "MIT",
"author": "Maik Restrepo",
"main": "dist/api/index.js",
"types": "dist/index.d.ts",
"bin": "bin/run",
"files": [
"/bin",
"/dist",
"/oclif.manifest.json"
],
"scripts": {
"dev": "npx nodemon",
"clean": "shx rm -f oclif.manifest.json npm-shrinkwrap.json",
"lint": "eslint . --ext .ts",
"build": "shx rm -rf dist && tsc -b && tsc-alias",
"build-dev": "tsc -b --incremental && tsc-alias",
"prepublish": "npm run build",
"postrelease": "npm run prepublish && npm publish",
"prepare": "npx husky",
"test": "jest"
},
"dependencies": {
"@oclif/core": "^4.0.13",
"@oclif/plugin-help": "^6.2.6",
"@oclif/plugin-warn-if-update-available": "^3.1.9",
"axios": "^1.7.2",
"chalk": "4.1.2",
"child-process-es6-promise": "~1.2.1",
"cli-table": "^0.3.11",
"configstore": "^5.0.1",
"fs-extra": "^11.2.0",
"prompts": "^2.4.2",
"semver": "^7.6.3",
"shx": "^0.3.4",
"winston": "^3.13.1"
},
"devDependencies": {
"husky": "^9.1.1",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@oclif/prettier-config": "^0.2.1",
"@types/cli-table": "^0.3.4",
"@types/configstore": "^6.0.2",
"@types/fs-extra": "^11.0.4",
"@types/jest": "29.5.12",
"@types/node": "^20.14.11",
"@types/ramda": "^0.30.1",
"@types/semver": "^7.5.8",
"jest": "29.7.0",
"nodemon": "^3.1.4",
"ts-jest": "^29.2.3",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.5.3"
},
"engines": {
"node": ">=18.0.0"
},
"oclif": {
"commands": "./dist/commands",
"bin": "projex",
"scope": "projex",
"topicSeparator": " ",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-warn-if-update-available"
],
"warn-if-update-available": {
"frequency": 1,
"frequencyUnit": "days",
"timeoutInDays": 7,
"message": "<%= config.name %> update available from <%= chalk.greenBright(config.version) %> to <%= chalk.greenBright(latest) %>.",
"registry": "https://registry.npmjs.org"
},
"topics": {
"git": {
"description": "Utilities for manage the git repository"
},
"vtex": {
"description": "Utilities for manage the vtex process and workflow"
},
"bash": {
"description": "Utilities for manage the bash process and workflow"
}
}
}
}