-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.4 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
{
"name": "@date/holidays-us",
"version": "0.4.0",
"description": "USA bank and (some) public holidays",
"main": "lib/index.js",
"files": [
"lib/index.js"
],
"keywords": [
"holidays",
"holiday",
"dates",
"date",
"usa",
"us",
"new years",
"presidents",
"valentines",
"martin luther king jr",
"washington",
"memorial",
"independence",
"labor",
"columbus",
"veterans",
"halloween",
"thanksgiving",
"christmas"
],
"author": "Eli Doran <[email protected]>",
"license": "MIT",
"scripts": {
"test": "mocha --require coffeescript/register --reporter spec --bail --check-leaks test/lib/*.coffee",
"test6": "nave use 6 npm test",
"test8": "nave use 8 npm test",
"test10": "nave use 10 npm test",
"test-all": "npm run test6 && npm run test8 && npm run test10",
"coverage": "istanbul cover -x 'build/**' _mocha -- --require coffeescript/register -R spec test/lib/*.coffee"
},
"repository": {
"type": "git",
"url": "git://github.com/elidoran/node-date-holidays-us.git"
},
"bugs": "http://github.com/elidoran/node-date-holidays-us/issues",
"devDependencies": {
"coffeescript": "^1.12.7",
"coveralls": "^3.0.2",
"istanbul": "^0.4.5",
"mocha": "^5.2.0"
},
"dependencies": {
"@date/generator": "^0.2.0",
"@date/holidays": "^0.3.2"
},
"engines": {
"node": ">=6"
}
}