forked from buildo/react-autosize-textarea
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.56 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
{
"name": "react-autosize-textarea",
"version": "0.4.3",
"description": "replacement for built-in textarea which auto resizes itself",
"main": "index.js",
"scripts": {
"test": "npm run build && ./node_modules/karma/bin/karma start",
"build": "rm -rf lib && mkdir lib && babel src -d lib",
"lint": "scriptoni lint src examples/examples.js",
"lint-fix": "scriptoni lint --fix src examples/examples.js",
"preversion": "npm run lint && npm run test && npm run build-examples",
"prepublish": "npm run build",
"build-examples": "npm run clean && webpack --config examples/webpack.config.build.babel.js --progress",
"start": "webpack-dev-server --config examples/webpack.config.babel.js --progress --hot --inline",
"clean": "rm -f examples/bundle.js examples/bundle.js.map",
"generate-readme": "node ./generateReadme.js",
"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",
"index.js",
"index.d.ts"
],
"typings": "./index.d.ts",
"homepage": "https://github.com/buildo/react-autosize-textarea",
"devDependencies": {
"@types/react": "^15.0.24",
"babel-cli": "^6.11.4",
"babel-core": "^6.21.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"eslint-loader": "^1.6.1",
"expect": "^1.13.4",
"isparta-loader": "^2.0.0",
"karma": "^0.13.19",
"karma-bamboo-reporter": "^0.1.2",
"karma-chrome-launcher": "^0.2.2",
"karma-coverage": "^0.5.3",
"karma-mocha": "^0.2.1",
"karma-webpack": "^1.7.0",
"mocha": "^2.4.5",
"react": "^15.5",
"react-dom": "^15.5",
"react-readme-generator": "0.0.1",
"require-dir": "^0.3.0",
"scriptoni": "^0.4.3",
"smooth-release": "^8.0.0",
"webpack": "^1.12.12",
"webpack-dev-server": "^1.14.1"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0",
"react-dom": "^0.14.0 || ^15.0.0"
},
"dependencies": {
"autosize": "^3.0.15",
"prop-types": "^15.5.6"
}
}