-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 1.72 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
{
"name": "@shelf/array-chunk-by-size",
"version": "3.1.0",
"description": "Chunk array of objects by their size in JSON",
"keywords": [
"array",
"chunk",
"json",
"split",
"separate",
"string"
],
"repository": "shelfio/array-chunk-by-size",
"main": "lib",
"files": [
"lib/"
],
"scripts": {
"build": "rm -rf lib/ && yarn build:types && babel src --out-dir lib --ignore '**/*.test.ts' --extensions '.ts'",
"build:types": "tsc --emitDeclarationOnly --declaration --isolatedModules false --declarationDir lib",
"coverage": "jest --coverage",
"lint": "eslint . --ext .js,.ts,.json --fix",
"lint:ci": "eslint . --ext .js,.ts,.json",
"prepack": "yarn build",
"test": "export ENVIRONMENT=local && jest src",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch"
},
"lint-staged": {
"*.{html,md,yml}": [
"prettier --write"
],
"*.{ts,js,json}": [
"eslint --fix"
]
},
"babel": {
"extends": "@shelf/babel-config/backend"
},
"prettier": "@shelf/prettier-config",
"dependencies": {
"json-stringify-safe": "5.0.1"
},
"devDependencies": {
"@babel/cli": "7.26.4",
"@babel/core": "7.26.0",
"@shelf/babel-config": "1.2.0",
"@shelf/eslint-config": "2.22.0",
"@shelf/prettier-config": "1.0.0",
"@shelf/tsconfig": "0.0.8",
"@types/cwd": "^0.10.0",
"@types/jest": "28.1.8",
"@types/json-stringify-safe": "5.0.3",
"@types/node": "16",
"eslint": "8.57.1",
"husky": "8.0.3",
"jest": "28.1.3",
"lint-staged": "13.3.0",
"prettier": "2.8.8",
"typescript": "4.9.5"
},
"engines": {
"node": ">=16"
},
"publishConfig": {
"access": "public"
}
}