forked from furquan-lp/react-input-autosize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.19 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
{
"name": "react-input-autosize",
"version": "3.0.0",
"description": "Auto-resizing Input Component for React",
"main": "lib/AutosizeInput.js",
"js:next": "dist/react-input-autosize.es.js",
"author": "Jed Watson",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/JedWatson/react-input-autosize.git"
},
"dependencies": {
"prop-types": "^15.5.8"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^6.0.1",
"babel-loader": "^7.1.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.8",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"css-loader": "^0.28.7",
"eslint": "^3.19.0",
"eslint-config-keystone": "^3.0.0",
"eslint-config-keystone-react": "^1.0.0",
"eslint-plugin-react": "^6.10.3",
"extract-text-webpack-plugin": "^3.0.0",
"gh-pages": "^1.1.0",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^2.30.1",
"jest-cli": "^21.0.2",
"less": "^2.3.1",
"less-loader": "^4.0.5",
"nps": "^5.7.1",
"nps-utils": "^1.3.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rollup": "^0.49.2",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^2.0.1",
"style-loader": "^0.18.2",
"uglify-es": "^3.0.28",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1"
},
"peerDependencies": {
"react": "^16.3.0 || ^17.0.0 || ^18.0.0"
},
"scripts": {
"build": "NODE_ENV=production nps build",
"build-examples": "nps examples",
"deploy": "nps examples && gh-pages -d examples/dist",
"lint": "eslint ./; true",
"start": "webpack-dev-server --progress",
"test": "jest; true"
},
"jest": {
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/fbjs",
"<rootDir>/node_modules/react-dom"
],
"roots": [
"<rootDir>/src"
]
},
"keywords": [
"react",
"react-component",
"input",
"autosize"
]
}