-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 940 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
38
39
40
41
42
43
{
"name": "unpaginated",
"version": "3.0.3",
"description": "Dead simple pagination",
"homepage": "https://github.com/manuscriptmastr/unpaginated#readme",
"bugs": {
"url": "https://github.com/manuscriptmastr/unpaginated/issues"
},
"keywords": [
"pagination",
"paginate",
"depaginate",
"unpaginated",
"functional",
"concurrency",
"cursor",
"page",
"offset",
"total"
],
"type": "module",
"main": "./cjs/index.cjs",
"module": "./src/index.js",
"exports": {
"require": "./cjs/index.cjs",
"import": "./src/index.js",
"default": "./src/index.js"
},
"scripts": {
"test": "ava --verbose",
"build": "rollup --config"
},
"author": "Joshua Martin",
"license": "ISC",
"dependencies": {
"ramda": "^0.27.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"ava": "^3.15.0"
}
}