-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.14 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
{
"name": "holiday-calendar",
"version": "1.1.6",
"description": "A standardized date dataset providing public holidays and working day adjustments for different regions",
"main": "src/index.js",
"browser": "src/index.js",
"files": [
"src",
"data"
],
"scripts": {
"test": "node test/index.test.js local",
"test:cdn": "node test/index.test.js cdn",
"lint": "eslint src",
"build:js": "terser src/index.js -c -m -o src/index.min.js",
"build:json": "node scripts/minify-json.js",
"build": "npm run build:js && npm run build:json",
"prepare": "npm run build && npm run test"
},
"keywords": [
"holiday",
"calendar",
"workday",
"dataset",
"json",
"browser",
"web"
],
"author": "cg-zhou",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cg-zhou/holiday-calendar.git"
},
"homepage": "https://github.com/cg-zhou/holiday-calendar#readme",
"bugs": {
"url": "https://github.com/cg-zhou/holiday-calendar/issues"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"eslint": "^8.0.0",
"terser": "^5.27.0"
}
}