This repository has been archived by the owner on Mar 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 85
/
package.json
93 lines (93 loc) · 2.37 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
{
"name": "react-autosize-textarea",
"version": "7.1.0",
"description": "replacement for built-in textarea which auto resizes itself",
"main": "lib",
"typings": "lib",
"scripts": {
"test": "jest",
"build": "rm -rf lib && mkdir lib && tsc",
"preversion": "npm run test",
"prepublish": "npm run build",
"start": "styleguidist server",
"typecheck": "tsc --noEmit",
"release-version": "smooth-release --validations --npm-version --changelog --gh-release --npm-publish"
},
"repository": {
"type": "git",
"url": "https://github.com/buildo/react-autosize-textarea.git"
},
"keywords": [
"react",
"react-component",
"textarea",
"autosize",
"resize",
"height",
"growing",
"size"
],
"author": "Francesco Cioria <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/buildo/react-autosize-textarea/issues"
},
"files": [
"lib",
"src",
"examples",
"styleguide",
"typings"
],
"homepage": "https://github.com/buildo/react-autosize-textarea",
"devDependencies": {
"@types/autosize": "3.0.6",
"@types/jest": "21.1.8",
"@types/node": "8.0.54",
"@types/prop-types": "^15.7.3",
"@types/react": "^16.8.1",
"@types/react-dom": "^16.0.11",
"babel-loader": "^7.1.2",
"babel-preset-buildo": "^0.1.1",
"css-loader": "^0.28.5",
"file-loader": "^1.1.5",
"jest": "^21.2.1",
"node-sass": "^4.8.3",
"progress-bar-webpack-plugin": "^1.10.0",
"raw-loader": "^0.5.1",
"react": "^16",
"react-docgen-typescript": "^1.1.0",
"react-dom": "^16",
"react-styleguidist": "^6.0.33",
"react-test-renderer": "^16.2.0",
"require-dir": "^0.3.0",
"sass-loader": "^6.0.6",
"smooth-release": "^8.0.0",
"styled-components": "^3.2.5",
"ts-jest": "^21.2.3",
"ts-loader": "^2.3.3",
"typescript": "^2.4.2",
"url-loader": "^0.5.9",
"webpack": "3.5.5"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0 || ^16.0.0",
"react-dom": "^0.14.0 || ^15.0.0 || ^16.0.0"
},
"dependencies": {
"autosize": "^4.0.2",
"line-height": "^0.3.1",
"prop-types": "^15.5.6"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(.*[.](test))[.](tsx?)$",
"moduleFileExtensions": [
"js",
"ts",
"tsx"
]
}
}