-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.7 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.7 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "relper-cli",
"description": "Release helper cli to help/assist with the release flow.",
"version": "0.2.1",
"author": "Eduardo Azevedo Grigolo <hi@eduardogrigolo.com>",
"bin": {
"relper": "./bin/run"
},
"bugs": "https://github.com/azedo/relper-cli/issues",
"dependencies": {
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/plugin-help": "^3.2.0",
"chalk": "^4.1.0",
"inquirer": "^7.3.3",
"listr": "^0.14.3",
"module-alias": "^2.2.2",
"ora": "^5.1.0",
"pkg-dir": "^4.2.0",
"rxjs": "^6.6.3",
"tslib": "^2.0.3"
},
"devDependencies": {
"@oclif/dev-cli": "1.24.1",
"@oclif/test": "1.2.7",
"@types/chai": "4.2.14",
"@types/inquirer": "7.3.1",
"@types/listr": "0.14.2",
"@types/mocha": "8.0.4",
"@types/node": "14.14.10",
"@typescript-eslint/eslint-plugin": "4.22.0",
"@typescript-eslint/parser": "4.22.0",
"chai": "4.2.0",
"cli-ux": "5.5.1",
"eslint": "7.24.0",
"eslint-config-azedo": "0.2.2",
"eslint-config-oclif": "3.1.0",
"eslint-config-oclif-typescript": "0.2.0",
"eslint-config-prettier": "8.2.0",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-react": "7.24.0",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-sonarjs": "0.6.0",
"globby": "11.0.1",
"mocha": "10.0.0",
"nyc": "15.1.0",
"prettier": "2.2.1",
"ts-node": "8.10.2",
"tsc-alias": "1.2.9",
"typescript": "4.1.2"
},
"engines": {
"node": ">=10.0.0",
"npm": ">=7.0.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/azedo/relper-cli#readme",
"keywords": [
"oclif",
"relper",
"cli",
"release"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "relper",
"plugins": [
"@oclif/plugin-help"
],
"hooks": {
"init": "./lib/hooks/init/check-for-configs"
}
},
"repository": "https://github.com/azedo/relper-cli.git",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint . --ext .ts --config .eslintrc.js",
"prepack": "rm -rf lib && tsc && tsc-alias && oclif-dev manifest && oclif-dev readme",
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif-dev readme && git add README.md",
"lint": "eslint '*/**/*.{js,ts,tsx}'",
"lint:fix": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix"
},
"types": "lib/index.d.ts",
"_moduleAliases": {
"@helpers": "src/helpers"
},
"relper": {
"branches": {
"main": "main",
"develop": "develop",
"release": "release",
"hotfix": "hotfix"
}
}
}