-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
85 lines (85 loc) · 2.01 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
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "rn-checkbox-list",
"version": "1.1.0",
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint ."
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/runtime": "^7.8.3",
"@react-native-community/checkbox": "^0.5.8",
"@react-native-community/eslint-config": "^0.0.6",
"@react-native-community/eslint-plugin": "^1.1.0",
"@rnx-kit/align-deps": "^2.0.1",
"babel-jest": "^24.9.0",
"eslint": "^6.8.0",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.72.1",
"prop-types": "^15.7.2",
"react": "18.1.0",
"react-native": "^0.70.0",
"react-test-renderer": "18.1.0",
"typescript": "^4.4.3"
},
"jest": {
"preset": "react-native"
},
"description": "List of checkboxes with select and deselect all option",
"main": "src/checkList.js",
"types": "src/checkList.d.ts",
"directories": {
"example": "example",
"src": "src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rinku-k/rn-checkbox-list.git"
},
"keywords": [
"checkbox",
"checkboxes",
"react-native",
"checkbox-list",
"checklist",
"android",
"ios"
],
"author": "Rinku",
"license": "ISC",
"bugs": {
"url": "https://github.com/rinku-k/rn-checkbox-list/issues"
},
"homepage": "https://github.com/rinku-k/rn-checkbox-list#readme",
"rnx-kit": {
"kitType": "library",
"alignDeps": {
"requirements": {
"development": [
"react-native@0.70"
],
"production": [
"react-native@0.70"
]
},
"capabilities": [
"babel-preset-react-native",
"checkbox",
"core",
"core-android",
"core-ios",
"jest",
"react",
"react-test-renderer"
]
}
},
"peerDependencies": {
"@react-native-community/checkbox": "^0.5.8",
"react": "18.1.0",
"react-native": "^0.70.0"
}
}