-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.2 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.2 KB
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
{
"name": "holiday-butler",
"version": "1.0.4",
"description": "Get dates of holidays for any year in any country.",
"main": "./dist/index.js",
"scripts": {
"test": "npm run prepare && ./node_modules/mocha/bin/mocha test/ --recursive --timeout=10000",
"build": "node ./src/build.js",
"prepare": "node -e \"require('prepare-package')()\"",
"postpublish": "node ./src/clean.js",
"prepare:watch": "nodemon -w ./src -e '*' --exec 'npm run prepare'"
},
"engines": {
"node": ">=12"
},
"repository": {
"type": "git",
"url": "git+https://github.com/itw-creative-works/holiday-butler"
},
"keywords": [
"holiday-butler"
],
"author": "ITW Creative Works",
"license": "MIT",
"bugs": {
"url": "https://github.com/itw-creative-works/holiday-butler/issues"
},
"homepage": "https://https://itwcreativeworks.com",
"preparePackage": {
"input": "./src",
"output": "./dist",
"replace": {}
},
"dependencies": {
"itwcw-package-analytics": "^1.0.4",
"node-fetch": "^2.6.12"
},
"devDependencies": {
"date-holidays": "^3.23.12",
"fs-jetpack": "^5.1.0",
"mocha": "^8.4.0",
"moment": "^2.30.1",
"prepare-package": "^1.1.12"
}
}