-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
76 lines (76 loc) · 1.88 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
{
"name": "caldate",
"version": "2.0.5",
"description": "Calendar date for date-holidays",
"keywords": [
"calendar",
"date"
],
"homepage": "https://github.com/commenthol/caldate",
"bugs": {
"url": "https://github.com/commenthol/caldate/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/commenthol/caldate.git"
},
"license": "ISC",
"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",
"types": "./types",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"all": "npm-run-all clean lint build test",
"ci": "npm run all",
"build": "rollup -c",
"clean": "rimraf lib es 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 --ext .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": {
"moment-timezone": "^0.5.43"
},
"devDependencies": {
"c8": "^7.13.0",
"dtslint": "^4.2.1",
"eslint": "^8.40.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.0",
"rollup": "^3.21.6",
"typescript": "^5.0.4"
},
"engines": {
"node": ">=12.0.0"
}
}