-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.23 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
{
"name": "@colorfy-software/cfy",
"description": "Jira integrated commiting CLI",
"version": "1.2.0",
"author": "Kristjan Vool <[email protected]> (https://github.com/iremlopsum)",
"bin": {
"cfy": "./bin/run"
},
"bugs": "https://github.com/colorfy-software/cfy/issues",
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^3",
"chalk": "^4.1.1",
"cli-progress": "^3.9.0",
"cli-ux": "^5.6.3",
"find-git-root": "^1.0.4",
"inquirer": "^8.1.1",
"inquirer-search-list": "^1.2.6",
"jira.js": "^2.7.0",
"open": "^8.4.0",
"tslib": "^1"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@react-native-community/eslint-config": "^2.0.0",
"@types/chalk": "^2.2.0",
"@types/cli-progress": "^3.9.1",
"@types/inquirer": "^7.3.2",
"@types/node": "^10",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"eslint": "^7.22.0",
"eslint-config-oclif": "^3.1",
"eslint-config-oclif-typescript": "^0.1",
"eslint-config-prettier": "^8.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-detox": "^1.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^5.0.0",
"globby": "^10",
"prettier": "^2.2.1",
"ts-node": "^10.2.1",
"typescript": "^4.2.3"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/colorfy-software/cfy",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "cfy",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "colorfy-software/cfy",
"scripts": {
"posttest": "eslint . --ext .ts --config .eslintrc",
"prepack": "rm -rf lib tsconfig.tsbuildinfo && tsc -b && oclif-dev manifest && oclif-dev readme",
"postpack": "rimraf oclif.manifest.json tsconfig.tsbuildinfo",
"test": "echo NO TESTS",
"version": "oclif-dev readme && git add README.md"
},
"types": "lib/index.d.ts"
}