New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

react-native-awesome-text-input

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-awesome-text-input - npm Package Compare versions

Comparing version

to
0.0.23-beta.0

dist/main.js

7

.babelrc.js
module.exports = {
presets: ['module:metro-react-native-babel-preset'],
// presets: ['module:metro-react-native-babel-preset'],
presets: [
[
'@babel/preset-react'
]
]
};
import { FC } from 'react';
import { TextInputProps } from 'react-native';
export declare const CustomTextInput: FC<TextInputProps>;
export * from './CustomTextInput/CustomTextInput';

19

package.json
{
"name": "react-native-awesome-text-input",
"version": "0.0.22",
"version": "0.0.23-beta.0",
"description": "A simple and reusable react native compatible text input that packs animations and extra styling on top of the core text input component from react native's package",
"main": "dist/index.js",
"main": "dist/main.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --clearCache && jest --coverage",
"build": "tsc"
"build": "rollup -c"
},

@@ -31,2 +31,5 @@ "repository": {

"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@types/jest": "^25.2.1",

@@ -36,5 +39,2 @@ "@types/react": "^16.9.34",

"@types/react-test-renderer": "^16.9.2",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"babel-loader": "^8.1.0",

@@ -44,7 +44,12 @@ "enzyme": "^3.11.0",

"jest": "^25.3.0",
"metro-react-native-babel-preset": "^0.59.0",
"react": "^16.9.0",
"react-native": "^0.62.2",
"react-test-renderer": "^16.9.0",
"ts-jest": "^25.4.0"
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.27.0",
"ts-jest": "^25.4.0",
"typescript": "^3.8.3"
}
}
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"moduleResolution": "node",
"module": "commonjs",
"module": "ES6",
"noImplicitAny": true,

@@ -13,4 +11,3 @@ "removeComments": true,

"declaration": true,
"outDir": "dist",
"skipLibCheck": true
"outDir": "dist"
},

@@ -17,0 +14,0 @@ "include": ["src/**/*"],