-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.21 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
{
"name": "chunk-arr",
"version": "2.1.2",
"description": "A collection of utility functions to split an array into chunks by size or certain condition",
"repository": "nam288/chunk-arr",
"main": "dist/src",
"scripts": {
"build": "tsc",
"test": "xo && nyc mocha \"./dist/test/**/*.js\"",
"prepare": "npm run build && npm test"
},
"engines": {
"node": ">=10"
},
"types": "dist/src",
"files": [
"dist/src"
],
"issue": "https://github.com/nam288/chunk-arr/issues",
"keywords": [
"utility",
"array",
"chunk",
"split",
"group",
"slice",
"seperate"
],
"author": {
"name": "Nam Hoang Le",
"email": "[email protected]",
"url": "https://github.com/nam288"
},
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.16",
"@types/mocha": "^8.2.2",
"chai": "^4.3.4",
"mocha": "^8.3.2",
"nyc": "^15.1.0",
"typescript": "^4.2.3",
"xo": "^0.38.2"
},
"xo": {
"prettier": true,
"printWidth": 120,
"rules": {
"unicorn/no-for-loop": "off",
"unicorn/filename-case": "off"
}
},
"nyc": {
"reporter": [
"text",
"html",
"lcov"
],
"extension": [
".ts"
]
}
}