-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 905 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 905 Bytes
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
{
"name": "chunk-array",
"version": "1.0.0",
"description": "A util that splits a given array in chunks.",
"main": "src/index.ts",
"scripts": {
"test": "jest",
"lint": "eslint src/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eduardomcv/chunk-array.git"
},
"author": "eduardomcv",
"homepage": "https://github.com/eduardomcv/chunk-array#readme",
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^28.1.7",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"babel-jest": "^28.1.3",
"eslint": "^8.22.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^28.1.3",
"typescript": "^4.7.4"
}
}