-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.67 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.67 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
{
"name": "@brainsbeards/react-native-animated-code-input",
"author": "Brains and Beards",
"version": "1.0.1",
"homepage": "https://github.com/brains-and-beards/react-native-animated-code-input",
"description": "Animated code input component for React Native, with support for iOS, Android, and React Native Web. It works with one-time code autofill on iOS and Android.",
"license": "MIT",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"build": "yarn lint && tsc --project tsconfig.json"
},
"peerDependencies": {
"react": ">=16.11.0",
"react-native": ">=0.59.0"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/runtime": "^7.9.6",
"@types/jest": "^24.0.24",
"@types/react": "^16.9.35",
"@types/react-native": "^0.62.0",
"@types/react-test-renderer": "16.9.2",
"@typescript-eslint/eslint-plugin": "^3.0.1",
"@typescript-eslint/parser": "^3.0.1",
"babel-jest": "^26.0.1",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"metro-react-native-babel-preset": "^0.59.0",
"prettier": "^2.0.5",
"react-test-renderer": "16.11.0",
"typescript": "^3.9.3"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"keywords": [
"react",
"react-component",
"react-native",
"react-native-web",
"react-native-component",
"android",
"ios",
"code-input",
"pin-code",
"pin-code-input",
"animated",
"one-time code"
]
}