-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
131 lines (131 loc) · 4.56 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "track-time-cli",
"version": "1.46.2",
"description": "A CLI utility for tracking tasks in time sheets, inspired by timetrap.",
"keywords": [
"time",
"tracking",
"cli",
"timetrap",
"timesheet"
],
"homepage": "https://github.com/f3rno64/track-time-cli",
"bugs": {
"url": "https://github.com/f3rno64/track-time-cli/issues"
},
"repository": "https://github.com/f3rno64/track-time-cli",
"license": "MIT",
"author": "Cris Mihalache <f3rno64@gmail.com>",
"main": "./dist/cli.js",
"types": "./dist/index.d.ts",
"bin": {
"tt": "./dist/cli.js"
},
"scripts": {
"build": "NODE_PATH=./src tsc -p tsconfig.json && pnpm copy:templates && pnpm copy:styles",
"copy:styles": "cp -r styles dist/",
"copy:templates": "cp -r templates dist/",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "pnpm lint:stylelint && pnpm lint:markdownlint && pnpm lint:eslint",
"lint:eslint": "eslint -f stylish --ext .json,.ts,.js package.json src/**/*",
"lint:eslint:fix": "eslint -f stylish --fix --ext .json,.ts,.js package.json src/**/*",
"lint:fix": "pnpm lint:stylelint:fix && pnpm lint:markdownlint:fix && pnpm lint:eslint:fix",
"lint:markdownlint": "markdownlint README.md",
"lint:markdownlint:fix": "markdownlint --fix README.md",
"lint:stylelint": "stylelint styles/*.scss",
"lint:stylelint:fix": "stylelint --fix styles/*.scss",
"prepare": "husky",
"prepare-release": "pnpm format:check && pnpm lint && pnpm test && pnpm build",
"prepublish": "pnpm build",
"release": "pnpm prepare-release && pnpm update-version && git push --follow-tags origin",
"test": "NODE_PATH=./src NODE_ENV=test mocha",
"test:coverage": "NODE_PATH=./src NODE_ENV=test nyc mocha",
"test:watch": "NODE_PATH=./src NODE_ENV=test mocha --watch",
"update-deps": "updates -u -g",
"update-version": "standard-version"
},
"dependencies": {
"colors": "^1.4.0",
"consonant": "^0.0.2",
"date-fns": "^3.3.1",
"express": "^4.18.2",
"format-duration": "^3.0.2",
"handlebars": "^4.7.8",
"humanize-duration": "^3.31.0",
"lodash": "^4.17.21",
"node-sass": "^9.0.0",
"open": "^10.0.3",
"p-iteration": "^1.1.8",
"s-ago": "^2.2.0",
"signale": "^1.4.0",
"simple-update-notifier": "^2.0.0",
"strip-ansi": "^6.0.0",
"time-speak": "^1.8.1",
"tslib": "^2.6.2",
"vowel": "^0.0.3",
"weekday": "^3.0.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@commitlint/format": "^18.6.0",
"@commitlint/types": "^18.6.0",
"@eslint/js": "^8.56.0",
"@fintechstudios/eslint-plugin-chai-as-promised": "^3.1.0",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.11",
"@types/chai-as-promised": "^7.1.8",
"@types/eslint__js": "^8.42.3",
"@types/express": "^4.17.21",
"@types/format-duration": "^1.0.3",
"@types/humanize-duration": "^3.27.4",
"@types/lodash": "^4.14.202",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.16",
"@types/node-sass": "^4.11.7",
"@types/signale": "^1.4.7",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"eslint": "^8.56.0",
"eslint-plugin-chai-expect": "^3.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-github": "^4.10.1",
"eslint-plugin-immutable": "^1.0.0",
"eslint-plugin-json-format": "^2.0.1",
"eslint-plugin-jsonc": "^2.13.0",
"eslint-plugin-lodash": "^7.4.0",
"eslint-plugin-mocha": "^10.2.0",
"eslint-plugin-no-secrets": "^0.8.9",
"eslint-plugin-optimize-regex": "^1.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-pure": "github:purely-functional/eslint-plugin-pure",
"eslint-plugin-regexp": "^2.2.0",
"eslint-plugin-sonarjs": "^0.23.0",
"eslint-plugin-switch-case": "^1.1.2",
"eslint-plugin-unicorn": "^50.0.1",
"eslint-plugin-write-good-comments": "^0.2.0",
"husky": "^9.0.10",
"is-ansi": "^1.0.0",
"lint-staged": "^15.2.2",
"markdownlint-cli": "^0.39.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^3.2.5",
"remark": "^15.0.1",
"source-map-support": "^0.5.21",
"standard-version": "^9.5.0",
"stylelint": "^16.2.1",
"stylelint-config-standard-scss": "^13.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"updates": "^15.1.1"
},
"engines": {
"node": ">=16.0.0"
}
}