-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
58 lines (58 loc) · 1.58 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
{
"name": "@createnl/grouped-checkboxes",
"version": "1.3.0",
"description": "Grouped checkboxes with check-all checkboxes",
"repository": {
"type": "git",
"url": "git+https://github.com/createnl/grouped-checkboxes.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist & tsc",
"test": "jest"
},
"keywords": [
"React",
"Checkbox",
"Check all",
"Grouped Checkbox"
],
"author": "Alex Lisenkov",
"license": "MIT",
"peerDependencies": {
"react": "^18.1.0",
"react-dom": "^18.1.0"
},
"devDependencies": {
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@testing-library/react": "^13.3.0",
"@types/jest": "^28.1.1",
"@types/lodash.debounce": "^4.0.7",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"babel-jest": "^28.1.1",
"eslint": "^8.20.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^23.11.0",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.1",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"ts-jest": "^28.0.4",
"typescript": "^4.7.3"
},
"dependencies": {
"lodash.debounce": "^4.0.8"
},
"bugs": {
"url": "https://github.com/createnl/grouped-checkboxes/issues"
},
"homepage": "https://github.com/createnl/grouped-checkboxes#readme"
}