-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.15 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
{
"name": "@mudssrali/chunkify",
"version": "1.0.0",
"description": "a simple utility to split given array into chunks of input size with array reverse option",
"main": "build/chunkify.js",
"scripts": {
"build": "tsc",
"prepare": "rm -rf build && tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mudssrali/chunkify.git"
},
"keywords": [
"chunk",
"chunking",
"chunked",
"chunkify",
"array",
"split",
"divide",
"partition",
"iterator",
"size"
],
"author": "Mudassar Ali",
"license": "MIT",
"bugs": {
"url": "https://github.com/mudssrali/chunkify/issues"
},
"homepage": "https://github.com/mudssrali/chunkify#readme",
"jest": {
"rootDir": "src",
"transform": {
"\\.[jt]sx?$": "@sucrase/jest-plugin"
}
},
"devDependencies": {
"@sucrase/jest-plugin": "^2.1.0",
"@tsconfig/recommended": "^1.0.1",
"@types/jest": "^26.0.22",
"jest": "^26.6.3",
"typescript": "^4.2.4"
}
}