-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.02 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
{
"name": "clunarc",
"version": "0.0.1",
"description": "chinese lunar calendar cli",
"scripts": {
"start": "tsc --watch",
"build": "tsc",
"test": "tsc -noEmit"
},
"bin": {
"clunarc": "dist/clunarc.js",
"clunarc-month": "dist/clunarc-month.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hungtcs/clunarc.git"
},
"keywords": [
"cli",
"calendar",
"lunar",
"lunar-canlendar",
"lunisolar",
"lunisolar-calendar",
"chinese",
"chinese-calendar",
"lunar2solar",
"solar2lunar"
],
"author": "鸿则 <hungtcs@outlook.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hungtcs/clunarc/issues"
},
"homepage": "https://github.com/hungtcs/clunarc#readme",
"devDependencies": {
"@types/node": "^14.17.1",
"typescript": "^4.3.2"
},
"dependencies": {
"colors": "^1.4.0",
"commander": "^6.2.1",
"moment": "^2.29.1",
"traditional-chinese-calendar-database": "0.0.2-3",
"tty-table": "^4.1.3"
}
}