-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
46 lines (46 loc) · 1005 Bytes
/
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
{
"name": "clocker",
"version": "1.25.0",
"description": "track project hours",
"bin": {
"clocker": "bin/index.js"
},
"engines": {
"node": ">= 18"
},
"dependencies": {
"commander": "^12.1.0",
"editor": "^1.0.0",
"json-stable-stringify": "^1.0.0",
"level": "^8.0.0",
"level-read-stream": "^1.1.0",
"mkdirp": "^3.0.1",
"parse-messy-time": "^2.1.0",
"readable-stream": "^4.1.0",
"strftime": "^0.10.0"
},
"devDependencies": {
"rimraf": "^5.0.8",
"standard": "^17.0.0",
"tape": "^5.0.1"
},
"scripts": {
"standard": "standard",
"tape": "tape 'test/**/*.spec.js'",
"test": "npm run standard && npm run tape"
},
"repository": {
"type": "git",
"url": "git://github.com/fnogatz/clocker.git"
},
"homepage": "https://github.com/fnogatz/clocker",
"keywords": [
"consulting",
"hours",
"time",
"tracking",
"invoice"
],
"author": "Falco Nogatz <[email protected]>",
"license": "MIT"
}