-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.46 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.46 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
{
"name": "react-native-pincode-input",
"version": "1.0.2",
"description": "React Native Pincode Input",
"main": "src/index.js",
"scripts": {
"lint": "eslint . --quiet",
"test": "jest --noStackTrace --silent --notify",
"coverage": "jest --bail --noStackTrace --silent --notify --coverage=true --coverageReporters='text' --coverageReporters='text-summary'",
"codecov": "jest --bail --ci --silent --coverage=true --coverageReporters='lcov'"
},
"author": "Philip Bui",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/philip-bui/react-native-pincode-input.git"
},
"homepage": "https://github.com/philip-bui/react-native-pincode-input#readme",
"bugs": {
"url": "https://github.com/philip-bui/react-native-pincode-input/issues"
},
"files": [
"src"
],
"keywords": [
"react-native",
"pincode",
"pincode-input",
"input",
"animated"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@testing-library/react-native": "^7.0.2",
"eslint-config-react-native-lit": "^1.0.4",
"jest": "^27.0.1",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-native": "^0.63.2",
"react-test-renderer": "^17.0.0"
},
"peerDependencies": {
"prop-types": "*",
"react": "*",
"react-native": "*"
},
"eslintConfig": {
"extends": [
"react-native-lit"
]
},
"jest": {
"preset": "react-native"
}
}