forked from Ephigenia/mite-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.26 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
{
"author": "Ephigenia M. Eichner",
"name": "mite-cli",
"version": "1.11.0",
"description": "command line tool for time tracking service mite.de",
"preferGlobal": true,
"homepage": "https://github.com/Ephigenia/mite-cli/",
"keywords": [
"accounting",
"billing",
"budgets",
"cli",
"command-line-tool",
"commandline",
"freelance",
"list",
"mite",
"project",
"shell",
"time-management",
"time-tracking",
"timemanagement",
"timesheet",
"timesheets",
"timetracking",
"tool",
"tracker"
],
"license": "MIT",
"maintainer": {
"name": "Marcel Eichner",
"email": "[email protected]"
},
"contributors": [
{
"name": "Marcel Eichner",
"email": "[email protected]"
}
],
"engines": {
"node": ">=14",
"npm": ">=6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ephigenia/mite-cli.git"
},
"funding": {
"url": "http://github.com/sponsors/Ephigenia"
},
"bugs": {
"url": "https://github.com/Ephigenia/mite-cli/issues"
},
"bin": {
"mite": "source/mite.js"
},
"main": "source/mite.js",
"files": [
"/source",
"!/source/**/*.test.js",
"!.DS_Store"
],
"scripts": {
"lint": "eslint source",
"lint:fix": "npm run lint -- --fix",
"_postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"start": "node source/mite.js",
"tdd": "npm run test -- --watch",
"test": "NODE_ENV=test nyc --reporter=text-summary --reporter lcov mocha \"./{,!(node_modules)/**}/*.test.js\""
},
"dependencies": {
"ansi-colors": "4.1.3",
"commander": "11.0.0",
"external-editor": "3.1.0",
"inquirer": "9.2.7",
"mite-api": "0.1.1",
"nconf": "0.12.0",
"node-fetch": "2.6.12",
"open": "9.1.0",
"table": "6.8.1",
"tabtab": "3.0.2",
"weeknumber": "1.2.1"
},
"devDependencies": {
"@commitlint/cli": "17.6.6",
"@commitlint/config-angular": "17.6.6",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"chai": "4.3.7",
"eslint": "8.44.0",
"husky": "8.0.3",
"mocha": "10.2.0",
"nyc": "15.1.0",
"pinst": "3.0.0",
"semantic-release": "21.0.7"
}
}