forked from commenthol/date-chinese
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.1 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
83
84
85
86
87
{
"name": "date-chinese",
"version": "2.1.3",
"description": "Chinese Calendar",
"keywords": [
"calendar",
"chinese",
"chinese new year",
"conversion",
"gregorian",
"japanese",
"jieqi",
"korean",
"qingming",
"sekki",
"vietnamese",
"zhongqi"
],
"homepage": "https://github.com/commenthol/date-chinese",
"bugs": {
"url": "https://github.com/commenthol/date-chinese/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/commenthol/date-chinese.git"
},
"license": "MIT",
"author": "commenthol <[email protected]>",
"maintainers": [
"commenthol <[email protected]>"
],
"type": "module",
"exports": {
".": {
"import": "./src/index.js",
"require": "./lib/index.cjs"
},
"./package.json": "./package.json"
},
"main": "./lib/index.cjs",
"module": "./src/index.js",
"typings": "./types",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"all": "npm-run-all clean lint build test",
"build": "rollup -c",
"postbuild": "node scripts/postbuild.cjs",
"clean": "rimraf lib coverage .nyc_output",
"clean:all": "npm-run-all clean clean:node_modules",
"clean:node_modules": "rimraf node_modules",
"coverage": "c8 -r text -r html npm run test:ci",
"lint": "eslint \"**/*.js\"",
"prepublishOnly": "npm run all",
"readme": "markedpp --githubid -i README.md -o README.md",
"test": "npm-run-all test:ci test:ts",
"test:ci": "mocha",
"test:ts": "dtslint types"
},
"mocha": {
"checkLeaks": true,
"colors": true
},
"dependencies": {
"astronomia": "^4.0.1"
},
"devDependencies": {
"c8": "^7.8.0",
"dtslint": "^4.1.3",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"mocha": "^9.0.3",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"rollup": "^2.56.1",
"typescript": "^4.3.5"
},
"engines": {
"node": ">=12.0.0"
}
}