forked from szymonkozak/tempomat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.21 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
{
"name": "tempomat",
"version": "1.2.0-beta.0",
"description": "Tempo.io cloud CLI",
"main": "./dist/index.js",
"scripts": {
"build": "tsc -p .",
"test": "TZ=Europe/Warsaw jest",
"lint": "eslint --fix --ext .ts ."
},
"author": "Szymon Kozak @szymonkozak",
"license": "MIT",
"homepage": "https://github.com/szymonkozak/tempomat",
"bugs": "https://github.com/szymonkozak/tempomat/issues",
"repository": {
"type": "git",
"url": "git://github.com/szymonkozak/tempomat.git"
},
"bin": {
"tempo": "./bin/run"
},
"engines": {
"node": ">=8.0.0"
},
"keywords": [
"tempo",
"tempo-cli",
"cli",
"tempo cloud",
"tempo.io",
"jira"
],
"oclif": {
"topics": {
"alias": {
"description": "manage issue key aliases"
},
"tracker": {
"description": "manage issue time trackers (beta)"
}
},
"commands": "./dist/commands",
"bin": "tempo",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-warn-if-update-available",
"@oclif/plugin-autocomplete"
],
"warn-if-update-available": {
"timeoutInDays": 7
}
},
"files": [
"/bin",
"/dist",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"dependencies": {
"@oclif/command": "^1.5.19",
"@oclif/config": "^1.14.0",
"@oclif/plugin-autocomplete": "^0.1.5",
"@oclif/plugin-help": "^2.2.3",
"@oclif/plugin-warn-if-update-available": "^1.7.0",
"@types/lodash": "^4.14.149",
"@types/node": "^13.7.1",
"axios": "^0.21.1",
"chalk": "^3.0.0",
"cli-table3": "^0.5.1",
"cli-truncate": "^2.1.0",
"cli-ux": "^5.4.5",
"date-fns": "^2.9.0",
"globby": "^10.0.2",
"lodash": "^4.17.15"
},
"devDependencies": {
"@oclif/dev-cli": "^1.22.2",
"@types/jest": "^25.1.3",
"@typescript-eslint/eslint-plugin": "^2.22.0",
"@typescript-eslint/parser": "^2.22.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^25.1.0",
"ts-jest": "^25.2.1",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
}
}