-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 829 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 829 Bytes
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
{
"name": "group-by-time",
"version": "1.0.0",
"description": "Given an array of objects, where the objects each have some key with a unix timestamp value, break the array into multiple arrays and return them on an object, keyed by the group label.",
"main": "index.js",
"dependencies": {
"lodash.groupby": "^2.4.1"
},
"devDependencies": {
"prova": "^1.13.2"
, "lodash": "^2.4.1"
},
"scripts": {
"test": "node test"
},
"repository": {
"type": "git",
"url": "git://github.com/Techwraith/group-by-time.git"
},
"keywords": [
"timestamp",
"group",
"day",
"week",
"month"
],
"author": "techwraith",
"license": "MIT",
"bugs": {
"url": "https://github.com/Techwraith/group-by-time/issues"
},
"homepage": "https://github.com/Techwraith/group-by-time"
}