forked from gmoura/react-pinco
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.31 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
{
"name": "react-otp-login",
"version": "1.0.3",
"description": "A fully customizable, one-time password input component for the web built with React",
"main": "lib/index.js",
"scripts": {
"dev": "concurrently \"npm run build:watch\" \"npm run demo\"",
"build": "babel src/lib -d lib",
"build:watch": "babel src/lib -w -d lib",
"demo": "webpack-dev-server --mode development",
"demo:prod": "webpack --mode production",
"format": "prettier --write '**/*.{js,jsx}'",
"lint": "eslint '**/*.{js,jsx}' --quiet",
"lint:fix": "eslint --fix 'src/**/*.{js,jsx}'",
"prepublish": "npm run build",
"predeploy": "npm run demo:prod",
"deploy": "gh-pages -d demo",
"docz:dev": "docz dev",
"docz:build": "docz build",
"test": "nyc mocha",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"keywords": [],
"peerDependencies": {
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"concurrently": "^3.6.1",
"css-loader": "^3.0.0",
"docz": "^2.0.0-rc.58",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-flowtype": "^2.49.3",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.13.0",
"flow-bin": "^0.73.0",
"gh-pages": "^1.2.0",
"html-webpack-plugin": "^3.2.0",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"react": "^16.10.1",
"react-dom": "^16.10.1",
"style-loader": "^0.21.0",
"webpack": "^4.35.0",
"webpack-cli": "^3.3.4",
"webpack-dev-server": "^3.7.2"
},
"author": "Ajay NS <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/gmoura/react-otp-input",
"repository": {
"type": "git",
"url": "https://github.com/gmoura/react-otp-input"
},
"bugs": {
"url": "https://github.com/gmoura/react-otp-input/issues"
},
"dependencies": {}
}