forked from hungtcs/traditional-chinese-calendar-database
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.52 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": "traditional-chinese-calendar-database",
"version": "0.0.2-1",
"description": "中国农历数据库 1901~2100年",
"scripts": {
"start": "rollup --config=rollup.config.dev.js --watch",
"build": "rollup --config=rollup.config.prod.js",
"test": "jest",
"prepublish": "npm run build",
"convert:csv": "ts-node scripts/convert-to-csv.ts",
"convert:json": "ts-node scripts/convert-to-json.ts",
"convert:binary": "ts-node scripts/convert-to-binary.ts"
},
"author": "鸿则 <[email protected]>",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/jest": "^26.0.19",
"@types/node": "^14.14.14",
"axios": "^0.21.1",
"csv-generate": "^3.3.0",
"csv-stringify": "^5.5.3",
"iconv-lite": "^0.6.2",
"jest": "^26.6.3",
"moment": "^2.29.1",
"rollup": "^2.35.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"rxjs": "^6.6.3",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^3.9.5"
},
"main": "dist/index.js",
"module": "dist/index.esm.js",
"repository": {
"type": "git",
"url": "git+https://github.com/hungtcs/traditional-chinese-calendar-database.git"
},
"keywords": [
"chinese-calendar",
"lunar-calendar",
"calendar",
"lunar"
],
"bugs": {
"url": "https://github.com/hungtcs/traditional-chinese-calendar-database/issues"
},
"homepage": "https://github.com/hungtcs/traditional-chinese-calendar-database#readme"
}