🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

react-verification-input

Package Overview
Dependencies
Maintainers
1
Versions
62
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-verification-input - npm Package Compare versions

Comparing version

to
1.1.0

.babelrc

36

package.json
{
"name": "react-verification-input",
"version": "1.0.0",
"description": "A customizable verification code input written in React.",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andreaswilli/react-verification-input.git"
},
"keywords": [
"react",
"verification",
"confirmation",
"code",
"input"
],
"version": "1.1.0",
"main": "dist/index.js",
"repository": "https://github.com/andreaswilli/react-verification-input.git",
"author": "Andreas Willi",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/andreaswilli/react-verification-input/issues"
"license": "MIT",
"dependencies": {
"path": "^0.12.7",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"webpack": "^3.9.1"
},
"homepage": "https://github.com/andreaswilli/react-verification-input#readme"
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2017": "^6.24.1",
"babel-preset-react": "^6.24.1"
}
}

@@ -1,2 +0,1 @@

# react-verification-input
A customizable verification code input written in React.
# react-verification-input

@@ -1,3 +0,9 @@

exports.hello = function() {
console.log('Hello');
}
import React, { PureComponent } from 'react';
export default class VerificationInput extends PureComponent {
render () {
return (
<div>Verification input :)</div>
);
}
}