-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 1.86 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
{
"name": "@aakochnpm/timesheet",
"version": "0.4.0",
"description": "Track log in and log out events and display them in a way to make it easy to submit a timesheet",
"source": [
"src/cli.ts",
"src/login.ts",
"src/logoff.ts",
"src/logbreak.ts"
],
"scripts": {
"test": "c8 tap",
"debug": "c8 tap --no-timeout",
"build": "parcel build",
"postversion": "git push && git push --tags",
"postinstall": "node src/postinstall.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aakoch/timesheet.git"
},
"keywords": [
"timesheet",
"command",
"line"
],
"author": "Adam Koch (aakoch)",
"license": "GPL-3.0-or-later or NPOSL-3.0",
"bugs": {
"url": "https://github.com/aakoch/timesheet/issues"
},
"homepage": "https://github.com/aakoch/timesheet#readme",
"type": "module",
"devDependencies": {
"@types/node": "^18.15.5",
"@types/tap": "^15.0.8",
"assert": "^2.1.0",
"buffer": "^5.7.1",
"c8": "^7.12.0",
"constants-browserify": "^1.0.0",
"events": "^3.3.0",
"os-browserify": "^0.3.0",
"parcel": "^2.8.3",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"tap": "^16.3.4",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"typescript": "^5.0.2",
"util": "^0.12.5"
},
"dependencies": {
"@foo-dog/utils": "^0.3.0",
"chalk": "^5.0.1",
"dayjs": "^1.11.4",
"debug": "^4.3.4",
"read-last-lines": "^1.8.0"
},
"directories": {
"test": "test"
},
"tap": {
"coverage": false,
"node-arg": [
"--no-warnings",
"--loader",
"ts-node/esm"
],
"ts": false
},
"targets": {
"default": {
"distDir": "./dist",
"context": "node",
"isLibrary": true,
"outputFormat": "esmodule",
"optimize": true,
"sourceMap": false
}
}
}