forked from dgreene1/react-accessible-treeview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.85 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
{
"name": "react-accessible-treeview",
"description": "A react component that implements the treeview pattern as described by the WAI-ARIA Authoring Practices.",
"version": "2.9.0",
"author": "lissitz (https://github.com/lissitz)",
"main": "dist/react-accessible-treeview.cjs.js",
"module": "dist/react-accessible-treeview.esm.js",
"types": "dist/index.d.ts",
"peerDependencies": {
"classnames": "^2.2.6",
"prop-types": "^15.7.2",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/addons": "^6.5.16",
"@storybook/react": "^7.0.7",
"@testing-library/dom": "^8.16.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.4.0",
"@types/jest": "^28.1.3",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"babel-jest": "^28.1.3",
"babel-loader": "^8.2.5",
"classnames": "^2.2.6",
"eslint": "^8.19.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"lint-staged": "^9.2.2",
"prettier": "^1.18.2",
"react": "^18.2.0",
"react-icons": "^3.7.0",
"react-test-renderer": "^18.2.0",
"rollup": "^1.16.7",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^5.1.0",
"rollup-plugin-terser": "^5.1.1",
"rollup-plugin-typescript2": "^0.32.1",
"ts-jest": "^28.0.5",
"tslib": "^2.4.0",
"typescript": "^4.8.4"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"prepare": "npm run build",
"test": "jest --detectOpenHandles",
"type-check": "tsc --noEmit",
"lint": "eslint \"src/**/*\""
},
"files": [
"dist",
"src/index.ts",
"src/TreeView/*.ts(x)"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dgreene1/react-accessible-treeview.git"
},
"homepage": "https://dgreene1.github.io/react-accessible-treeview/",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,json,md}": [
"prettier --write",
"eslint --throwOnWarning",
"git add"
]
},
"keywords": [
"react",
"treeview",
"a11y",
"accessibility",
"react-component",
"tree"
]
}