-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
99 lines (99 loc) · 3.67 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "react-children-utilities",
"version": "2.10.0",
"type": "module",
"description": "Extended utils for ⚛️ React.Children data structure that adds recursive filter, map and more methods to iterate nested children.",
"repository": "fernandopasik/react-children-utilities",
"homepage": "https://fernandopasik.com/react-children-utilities",
"bugs": "https://github.com/fernandopasik/react-children-utilities/issues",
"author": "Fernando Pasik <fernando@pasik.com.ar> (https://fernandopasik.com)",
"contributors": [
"Brian Bartholomew (https://github.com/bcbrian)",
"Daniel Pinyol (https://github.com/dpinol)",
"iyegoroff (https://github.com/iyegoroff)",
"Mark Allen (https://github.com/TSMMark)",
"mrm007 (https://github.com/mrm007)",
"Ryosuke IWANAGA (https://github.com/riywo)",
"yosef langer (https://github.com/vasilevich)"
],
"license": "MIT",
"main": "react-children-utilities.js",
"module": "react-children-utilities.js",
"typings": "react-children-utilities.d.ts",
"files": [
"/lib",
"/react-children-utilities.*"
],
"keywords": [
"children",
"react",
"reactjs",
"utilities",
"utils"
],
"scripts": {
"all-contributors": "all-contributors --config .all-contributorsrc.json",
"build": "tsc -p tsconfig.build.json && rollup -c && npm run flowgen",
"check-types": "tsc --noEmit && flow",
"clean": "del coverage lib react-children-utilities.*",
"docs": "jekyll serve -s docs/",
"flowgen": "flowgen react-children-utilities.d.ts --quiet -o react-children-utilities.js.flow",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint",
"prebuild": "del lib react-children-utilities.*",
"prepare": "husky",
"preversion": "npm run verify",
"size": "size-limit",
"test": "node --test --import tsx src/**/*.test.*",
"test:coverage": "NODE_V8_COVERAGE=./coverage c8 -r lcov node --test --experimental-test-coverage --import tsx src/**/*.test.*",
"update:normalize": "cp -rf node_modules/normalize.css/normalize.css docs/_sass/normalize.scss && prettier docs/_sass/normalize.scss --write",
"verify": "npm run format:check && npm run lint && npm run check-types && npm run test:coverage && npm run build && npm run size"
},
"peerDependencies": {
"react": ">=15"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.18.0",
"@rollup/plugin-terser": "^0.4.4",
"@size-limit/file": "^11.1.6",
"@testing-library/react": "^16.1.0",
"@tsconfig/strictest": "^2.0.5",
"@types/react": "^19.0.4",
"@types/react-dom": "^19.0.2",
"all-contributors-cli": "^6.26.1",
"c8": "^10.1.3",
"del-cli": "^6.0.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-yml": "^1.16.0",
"flow-bin": "^0.259.0",
"flowgen": "^1.21.0",
"global-jsdom": "^26.0.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jsdom": "^26.0.0",
"lint-staged": "^15.3.0",
"normalize.css": "^8.0.1",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-pkg": "^0.18.1",
"prettier-plugin-sh": "^0.14.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rollup": "^4.30.1",
"size-limit": "^11.1.6",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.19.1"
},
"sideEffects": false
}