-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 1.96 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
73
74
{
"name": "paginate-arrays-js",
"version": "1.2.2",
"type": "module",
"description": "A library to paginate arrays in javascript",
"keywords": [
"paginate",
"pagination",
"array",
"javascript",
"js",
"library"
],
"main": "./dist/index.js",
"scripts": {
"test": "jest --silent --collectCoverage=false",
"test:watch": "jest --silent --watchAll --collectCoverage=false",
"test:ci": "jest --silent --collectCoverage=true",
"build": "tsup",
"lint": "eslint --ext .ts src",
"lint:fix": "eslint --ext .ts src --fix",
"prepare": "husky install"
},
"author": "Paulo Abreu",
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/paulozy/paginate-js.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/paulozy/paginate-js/issues"
},
"homepage": "https://github.com/paulozy/paginate-js#readme",
"devDependencies": {
"@rocketseat/eslint-config": "^1.2.0",
"@types/jest": "^29.5.1",
"@types/node": "^18.16.3",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-import-helpers": "^1.3.1",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"tsup": "^6.7.0",
"tsx": "^3.12.7",
"typescript": "^5.0.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"exports": {
".": {
"import": "./dist/index.cjs",
"require": "./dist/index.cjs"
},
"./dist/index.cjs": "./dist/index.cjs",
"./dist/index.d.ts": "./dist/index.d.ts"
}
}