-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.24 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
43
44
45
{
"name": "@writetome51/big-dataset-paginator",
"version": "2.0.0",
"description": "A class intended for pagination where all the data to be paginated can't be loaded in memory at once",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/writetome51/big-dataset-paginator.git"
},
"keywords": [
"app",
"big",
"data",
"dataset",
"paginator",
"pagination",
"paginate",
"typescript",
"class"
],
"author": "Steve Thompson",
"license": "MIT",
"bugs": {
"url": "https://github.com/writetome51/big-dataset-paginator/issues"
},
"homepage": "https://github.com/writetome51/big-dataset-paginator/tree/v0.0.1#readme",
"devDependencies": {
"@writetome51/arrays-match": ">=2.0.1",
"@writetome51/get-countup-countdown": ">=2.0.1"
},
"dependencies": {
"@writetome51/abstract-big-dataset-paginator": "^3.0.0",
"@writetome51/get-rounded-up-down": ">=3.0.1",
"@writetome51/has-value-no-value": ">=2.0.0",
"@writetome51/in-range": ">=2.0.2",
"@writetome51/loaded-page": "^0.1.0",
"@writetome51/not": ">=2.0.0",
"error-if-not-integer": ">=2.0.1"
}
}