-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
34 lines (34 loc) · 1.07 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
{
"name": "@holiday-jp/holiday_jp",
"version": "2.4.0",
"description": "Japanese holidays",
"main": "lib/holiday_jp.js",
"types": "lib/holiday_jp.d.ts",
"files": ["lib"],
"scripts": {
"test": "node --test ./test/*.js",
"generate": "git submodule update; cd holiday_jp/; git fetch origin master; git reset --hard origin/master; cd ../; node scripts/generate.js",
"build": "npm run generate; webpack; node scripts/build.js;rm scripts/holiday_jp_webpacked.js;cd ./release/; uglifyjs holiday_jp.js -c -m --source-map -o holiday_jp.min.js"
},
"repository": {
"type": "git",
"url": "https://github.com/holiday-jp/holiday_jp-js"
},
"keywords": [
"holidays"
],
"author": "Ken'ichiro Oyama",
"license": "MIT",
"bugs": {
"url": "https://github.com/holiday-jp/holiday_jp-js/issues"
},
"homepage": "https://github.com/holiday-jp/holiday_jp-js",
"devDependencies": {
"@playwright/test": "^1.48.0",
"js-yaml": "^3.13.1",
"moment": "^2.23.0",
"uglify-js": "^3.19.3",
"webpack": "^5.91.0",
"webpack-cli": "^4.2.0"
}
}