-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
42 lines (42 loc) · 1.23 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
{
"name": "moment-weekday-calc",
"version": "1.1.5",
"description": "Weekdays calculator: calculates number of days from the given set within the given diff. For example: calculate quantity of business days in 2015 financial year starting on 1 Apr 2015",
"main": "./src/moment-weekday-calc",
"scripts": {
"test": "node node_modules/mocha/bin/mocha -R spec ./test/weekdaycalc_test.js",
"experiment": "node node_modules/mocha/bin/mocha -R spec ./test/get_dates_experiment.js",
"build": "grunt"
},
"repository": {
"type": "git",
"url": "https://github.com/andruhon/moment-weekday-calc.git"
},
"keywords": [
"moment",
"business",
"workday",
"day",
"week",
"calculator"
],
"author": "andruhon <andrew@kondratev.pro>",
"license": "MIT",
"bugs": {
"url": "https://github.com/andruhon/moment-weekday-calc/issues"
},
"homepage": "https://github.com/andruhon/moment-weekday-calc",
"devDependencies": {
"chai": "^4.4.1",
"grunt": "^1.6.1",
"grunt-cli": "^1.4.3",
"grunt-contrib-uglify": "^4.0.1",
"grunt-contrib-watch": "^1.1.0",
"grunt-mocha-test": "^0.13.3",
"mocha": "10.4.0",
"moment": "^2.30.1"
},
"peerDependencies": {
"moment": ">=2.10.2"
}
}