forked from Andarist/react-textarea-autosize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.96 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-textarea-autosize",
"description": "textarea component for React which grows with content",
"version": "7.1.2",
"keywords": [
"autosize",
"grow",
"react",
"react-component",
"textarea"
],
"repository": "andreypopp/react-textarea-autosize",
"license": "MIT",
"main": "dist/react-textarea-autosize.cjs.js",
"module": "dist/react-textarea-autosize.esm.js",
"browser": {
"./dist/react-textarea-autosize.cjs.js": "./dist/react-textarea-autosize.browser.cjs.js",
"./dist/react-textarea-autosize.esm.js": "./dist/react-textarea-autosize.browser.esm.js"
},
"sideEffects": false,
"files": [
"dist"
],
"author": "Andrey Popp <8mayday@gmail.com> (httsps://andreypopp.com/)",
"contributors": [
"Mateusz Burzyński <mateuszburzynski@gmail.com> (https://github.com/Andarist)"
],
"scripts": {
"prebuild": "npm run clean",
"build": "preconstruct build",
"docs:dev": "parcel example/index.html --out-dir example/dist --open",
"docs:build": "parcel build example/index.html --out-dir example/dist",
"docs:publish": "npm run docs:build && cd example/dist && git init && git commit --allow-empty -m 'update docs' && git checkout -b gh-pages && touch .nojekyll && git add . && git commit -am 'update docs' && git push git@github.com:andreypopp/react-textarea-autosize gh-pages --force",
"clean": "rimraf dist",
"lint": "eslint --ext .js,.ts,.tsx src",
"prepare": "npm run build",
"preversion": "npm run lint && npm test",
"release:patch": "npm version patch && npm publish && git push --follow-tags",
"release:minor": "npm version minor && npm publish && git push --follow-tags",
"release:major": "npm version major && npm publish && git push --follow-tags",
"test": "jest",
"test:watch": "npm test -- --watch"
},
"peerDependencies": {
"react": "^16.8.0"
},
"dependencies": {
"@babel/runtime": "^7.8.4",
"use-composed-ref": "^1.0.0",
"use-latest": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.8.6",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.6",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@changesets/cli": "^2.5.2",
"@preconstruct/cli": "^1.1.7",
"@testing-library/jest-dom": "^5.1.1",
"@testing-library/react": "^9.4.1",
"@typescript-eslint/eslint-plugin": "^2.21.0",
"@typescript-eslint/parser": "^2.21.0",
"babel-eslint": "11.0.0-beta.2",
"bytes": "^3.1.0",
"cross-env": "^7.0.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"husky": "^4.2.3",
"jest": "^25.1.0",
"lint-staged": "^10.0.8",
"parcel-bundler": "^1.12.4",
"prettier": "^1.19.1",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"rimraf": "^3.0.2",
"terser": "^4.6.4",
"typescript": "^3.8.2"
}
}