-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
47 lines (47 loc) · 1.21 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
{
"name": "public-holidays",
"version": "0.2.2",
"description": "Public holidays by country. Readonly from google calendar.",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"pretest": "npm run clean && npm run tsc",
"test": "ava --no-cache --verbose lib/**/*.test.js",
"posttest": "npm run clean-test-code",
"tsc": "tsc",
"tscw": "tsc -w",
"preversion": "npm run tsc",
"postversion": "git push --follow-tags",
"prepublishOnly": "npm run tsc && npm run clean-test-code",
"clean": "rimraf ./lib",
"clean-test-code": "rimraf ./lib/**/*.test.js"
},
"engines": {
"node": ">=4.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mitica/public-holidays-js.git"
},
"keywords": [
"holidays",
"holiday",
"google",
"calendar"
],
"author": "Dumitru Cantea",
"license": "ISC",
"bugs": {
"url": "https://github.com/Mitica/public-holidays-js/issues"
},
"homepage": "https://github.com/Mitica/public-holidays-js#readme",
"dependencies": {
"cross-fetch": "^3.0.0"
},
"devDependencies": {
"@types/node": "latest",
"ava": "^0.25.0",
"rimraf": "^2.6.2",
"typescript": "latest"
}
}