forked from retyui/react-native-confirmation-code-field
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.75 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.75 KB
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
{
"name": "react-native-confirmation-code-field",
"version": "3.2.3",
"main": "src/components/ConfirmationCodeInput/index.js",
"scripts": {
"test": "jest",
"flow": "flow",
"lint": "eslint src ./*.js",
"ci": "npm run test & npm run flow & npm run lint",
"docs": "doctoc docs/API.md",
"prepublishOnly": "npm run ci"
},
"peerDependencies": {
"prop-types": "^15.6.2",
"react": "^16.4.0",
"react-native": "^0.57.0"
},
"devDependencies": {
"@exeto/eslint-config": "^2.0.0",
"@exeto/eslint-config-react": "^3.0.0",
"@types/react": "16.4.14",
"@types/react-native": "0.56.18",
"babel-eslint": "^10.0.1",
"doctoc": "^1.4.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.10.0",
"eslint": "^5.15.1",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-flowtype": "^3.4.2",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"flow-bin": "^0.94.0",
"husky": "^1.3.1",
"jest": "23.6.0",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4",
"prop-types": "^15.7.2",
"react": "16.5.1",
"react-dom": "16.5.1",
"react-native": "^0.59.0-rc.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run ci"
}
},
"description": "A react-native component to input confirmation code for both Android and IOS",
"repository": "git@github.com:retyui/react-native-confirmation-code-input.git",
"author": "David Narbutovich <vamnemne@gmail.com>",
"license": "MIT",
"keywords": [
"react",
"react-component",
"react-native",
"react-native-component",
"android",
"ios",
"code-input",
"confirmation-code",
"pin-code",
"confirmation-code-input",
"pin-code-input"
]
}