This repository has been archived by the owner on Jun 30, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
103 lines (103 loc) · 3.17 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
100
101
102
103
{
"name": "react-expanding-textarea",
"version": "2.3.6",
"description": "React textarea component to automatically expand and contract your textareas",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"repository": {
"type": "git",
"url": "[email protected]:rpearce/react-expanding-textarea.git"
},
"homepage": "https://github.com/rpearce/react-expanding-textarea",
"bugs": "https://github.com/rpearce/react-expanding-textarea/issues",
"author": "Robert Pearce <[email protected]> (http://robertwpearce.com)",
"contributors": [
"Robert Pearce <[email protected]> (https://robertwpearce.com)",
"Rauno Freiberg <[email protected]> (https://raunofreiberg.com)",
"Mat Sz <[email protected]> (https://matsz.dev)",
"Jonathan Wan (https://github.com/jnthnwn)"
],
"license": "BSD-3",
"keywords": [
"textarea",
"textarea-component",
"textarea-autoresize",
"text-resize",
"expand",
"autosize",
"expanding-textarea",
"autosize-textarea",
"react",
"react-component"
],
"tags": [
"textarea",
"textarea-component",
"textarea-autoresize",
"text-resize",
"expand",
"autosize",
"expanding-textarea",
"autosize-textarea",
"react",
"react-component"
],
"files": [
"LICENSE",
"README.md",
"dist/"
],
"sideEffects": false,
"scripts": {
"build": "rm -rf ./dist && concurrently npm:build:cjs npm:build:esm npm:build:umd",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:docs": "rm -rf docs/ && mkdir -p docs && build-storybook -o docs",
"build:esm": "tsc -p tsconfig.esm.json",
"build:umd": "tsc -p tsconfig.umd.json",
"ci": "concurrently npm:lint npm:test npm:build npm:build:docs",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"lint": "eslint .",
"prepublishOnly": "concurrently npm:lint npm:test npm:build",
"start": "start-storybook -p 6006",
"test": "jest"
},
"devDependencies": {
"@storybook/addon-a11y": "^6.4.22",
"@storybook/addon-controls": "^6.4.22",
"@storybook/react": "^6.4.22",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@types/jest": "^27.5.0",
"@types/node": "^17.0.33",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.4",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"all-contributors-cli": "^6.20.0",
"concurrently": "^7.2.1",
"eslint": "^8.16.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.2.2",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-n": "^15.2.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"ts-jest": "^28.0.2",
"typescript": "^4.6.4"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"dependencies": {
"fast-shallow-equal": "^1.0.0",
"react-with-forwarded-ref": "^0.3.5",
"tslib": "^2.4.0"
}
}