-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 844 Bytes
/
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
{
"name": "date-periodjs",
"version": "0.1.2",
"description": "calculates the dates between a start and end date on a given frequency",
"main": "lib/DatePeriodCalculator.js",
"scripts": {
"test": "npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/weagle08/date-periodjs.git"
},
"keywords": [
"date",
"date-period",
"date-frequency",
"frequency",
"period",
"time-period"
],
"author": "Ben Johnson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/weagle08/date-periodjs/issues"
},
"homepage": "https://github.com/weagle08/date-periodjs",
"devDependencies": {
"chai": "^3.2.0",
"mocha": "^2.2.5"
},
"dependencies": {
"simple-datejs": "^0.2.3"
},
"scripts": {
"test": "mocha -R spec --recursive"
}
}