-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 1.81 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
{
"name": "lunarcal",
"version": "0.1.0",
"description": "A calendar command used to print the Chinese Lunar calendar and national holidays in terminal.",
"license": "MIT",
"author": {
"name": "Nathan Ma",
"email": "nathan.mading@gmail.com"
},
"engines": {
"node": ">=12"
},
"bin": {
"lunarcal": "lib/cli.js"
},
"files": [
"lib"
],
"scripts": {
"build": "babel src -d lib",
"clean": "rm -rf lib",
"lint": "prettier --check src/**/*.js",
"lint:fix": "prettier --write src/**/*.js",
"package:macos": "pkg . --output ./bin/lunarcal --targets latest-macos-x64",
"package:linux": "pkg . --output ./bin/lunarcal --targets latest-linux-x64",
"package:window": "pkg . --output ./bin/lunarcal --targets latest-win-x64",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"cli",
"bin",
"util",
"calendar",
"chinese",
"lunar",
"holiday",
"cmd",
"console"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nathan-mading/lunarcal.git"
},
"dependencies": {
"chalk": "^5.0.1",
"dayjs": "^1.10.7",
"lunar-javascript": "^1.2.30",
"meow": "9.0.0",
"tty-table": "^4.1.5",
"update-notifier": "^5.1.0"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.8",
"@babel/node": "^7.16.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-flow": "7.16.7",
"jest": "^27.5.1",
"pkg": "^5.6.0",
"prettier": "^2.6.2"
},
"prettier": {
"arrowParens": "always",
"semi": true,
"singleQuote": true,
"trailingComma": "all"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "12"
}
}
],
"@babel/preset-flow"
]
}
}