mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
81 lines
2.2 KiB
JSON
81 lines
2.2 KiB
JSON
{
|
|
"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"
|
|
},
|
|
"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"
|
|
]
|
|
}
|