-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.7 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@the-nerd-cave/paginate",
"version": "1.1.1",
"description": "Create a paginated array with a defined length of elements per page.",
"keywords": [
"pagination",
"paginate",
"array"
],
"main": "dist/lib/index.js",
"typings": "dist/types/index.d.ts",
"exports": {
"import": "./esm/index.mjs",
"require": "./dist/lib/index.js"
},
"files": [
"dist",
"esm"
],
"scripts": {
"lint": "eslint ./src ./test --ext .ts",
"build": "rimraf dist && tsc",
"test": "jest --coverage",
"prepare": "npm run build",
"prepublishOnly": "npm run lint && npm run test"
},
"jest": {
"transform": {
".ts": "ts-jest"
},
"testEnvironment": "node",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|js)$",
"moduleFileExtensions": [
"ts",
"js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/",
"/example/"
],
"collectCoverageFrom": [
"src/*.{ts,js}"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/acollierr17/paginate.git"
},
"author": "acollier17 <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=12.0.0"
},
"bugs": {
"url": "https://github.com/acollierr17/paginate/issues"
},
"homepage": "https://github.com/acollierr17/paginate#readme",
"devDependencies": {
"@types/jest": "^26.0.13",
"@types/node": "^14.10.1",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"eslint": "^7.9.0",
"eslint-plugin-jest": "^24.1.0",
"jest": "^26.4.2",
"jest-config": "^26.4.2",
"rimraf": "^3.0.2",
"ts-jest": "^26.3.0",
"typescript": "^4.0.2"
}
}