-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.13 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.13 KB
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
{
"name": "@matrixai/pagination",
"version": "1.1.1",
"description": "Offset-based and cursor-based pagination utilities",
"keywords": [
"pagination",
"offset",
"cursor"
],
"author": "Roger Qiu <roger.qiu@matrix.ai>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/MatrixAI/js-pagination.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"ts-node": "ts-node -r tsconfig-paths/register",
"test": "jest",
"lint": "eslint '{src,tests}/**/*.{js,ts}'",
"lintfix": "eslint '{src,tests}/**/*.{js,ts}' --fix"
},
"devDependencies": {
"@types/jest": "^25.0.0",
"@types/node": "^13.13.1",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^25.0.0",
"prettier": "^2.0.5",
"ts-custom-error": "^3.2.0",
"ts-jest": "^25.0.0",
"ts-node": "^8.8.2",
"tsconfig-paths": "^3.9.0",
"typedoc": "^0.17.8",
"typescript": "^3.8.3"
}
}