-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.07 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
{
"name": "sincer",
"version": "0.0.1",
"description": "Terminal client for time monitoring.",
"type": "module",
"types": "./types/index.d.ts",
"main": "./lib/index.js",
"engines": {
"node": ">=17"
},
"bin": {
"sincer": "./bin/sincer.js"
},
"scripts": {
"start": "node .",
"test": "pnpm mocha -p ./test",
"prepublishOnly": "pnpm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mopsgamer/sincer.git"
},
"keywords": [
"time-since",
"cli",
"node",
"npm"
],
"author": "Mopsgamer",
"license": "ISC",
"bugs": {
"url": "https://github.com/Mopsgamer/sincer/issues"
},
"homepage": "https://github.com/Mopsgamer/sincer#readme",
"dependencies": {
"@m234/config": "^2.0.3",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"merge": "^2.1.1",
"picomatch": "^4.0.2",
"pretty-ms": "^9.2.0",
"text-table": "^0.2.0",
"yaml": "^2.6.1"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "^17.0.45",
"chai": "^5.1.2",
"mocha": "^10.8.2"
}
}