forked from commenthol/date-holidays
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.81 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
59
60
61
62
63
64
65
{
"name": "date-holidays",
"version": "0.1.10",
"description": "worldwide holidays",
"main": "lib",
"bin": {
"holidays2json": "./scripts/holidays2json.js"
},
"directories": {
"test": "test"
},
"contributors": [
"Mauro Braggio <m.braggio@e-time.it>",
"Quennie <simply.me.queeny@gmail.com>",
"Christian Schinnerl <Schinnerl.Christian@gmail.com>",
"James Dixon <jim.w.dixon@gmail.com>"
],
"dependencies": {
"date-easter": "^0.2.2",
"js-yaml": "^3.8.1",
"lodash": "^4.17.4",
"moment-timezone": "^0.5.11",
"moonbeams": "^2.0.1"
},
"devDependencies": {
"eslint": "^3.15.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.4.1",
"eslint-plugin-standard": "^3.0.1",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"rimraf": "^2.5.4"
},
"scripts": {
"test": "mocha test/*.mocha.js",
"all": "npm run clean && npm i && npm run yaml && npm run lint && npm test && npm pack",
"yaml": "node scripts/holidays2json.js",
"cover": "istanbul cover _mocha --report lcov --report text -- -R dot --check-leaks test/*.mocha.js",
"lint": "eslint --quiet '**/*.js'",
"watch": "watch-run -p data/*.yaml npm run yaml",
"clean": "rimraf coverage node_modules"
},
"repository": {
"type": "git",
"url": "https://github.com/commenthol/date-holidays.git"
},
"keywords": [
"holidays"
],
"author": "commenthol <commenthol@gmail.com>",
"maintainers": "commenthol <commenthol@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/commenthol/date-holidays/issues"
},
"homepage": "https://github.com/commenthol/date-holidays",
"eslintConfig": {
"extends": "standard",
"plugins": [
"standard"
]
}
}