-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 802 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 802 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
34
35
{
"name": "@arraypress/collection-utils",
"version": "1.0.0",
"description": "Aggregate + group collections by scalar or list taxonomy fields — primitives for taxonomy archive pages (tags, genres, artists, authors).",
"type": "module",
"main": "src/index.js",
"types": "src/index.d.ts",
"exports": {
".": {
"import": "./src/index.js",
"types": "./src/index.d.ts"
}
},
"files": [
"src"
],
"scripts": {
"test": "node --test tests/collection-utils.test.js"
},
"keywords": [
"collection",
"aggregate",
"group-by",
"taxonomy",
"facet",
"tag-cloud",
"astro"
],
"author": "David Sherlock",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/arraypress/collection-utils.git"
}
}