-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
57 lines (57 loc) · 1.56 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
{
"name": "react-native-section-alphabet-list",
"version": "3.0.0",
"description": "A simple React Native component that takes an array of data and renders a SectionList with alphabetically sorted data.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"test": "jest --config jest.config.js",
"lint": "eslint",
"build": "rm -rf dist && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kieran-McIntyre/react-native-alphabet-list.git",
"baseUrl": "https://github.com/Kieran-McIntyre/react-native-alphabet-list"
},
"keywords": [
"react-native",
"alphabet",
"SectionList",
"letters",
"address",
"addressbook",
"custom"
],
"author": {
"name": "Kieran McIntyre",
"email": "k.mcintyre98@outlook.com"
},
"license": "MIT",
"licenseFilename": "LICENSE",
"readmeFilename": "README.md",
"devDependencies": {
"@react-native-community/eslint-config": "^2.0.0",
"@testing-library/jest-native": "^3.4.3",
"@testing-library/react-native": "^11.4.0",
"@types/jest": "^25.2.1",
"@types/react": "^18.0.25",
"@types/react-native": "^0.70.6",
"@types/react-test-renderer": "^18.0.0",
"babel-jest": "^25.5.0",
"eslint": "^8.27.0",
"jest": "^25.3.0",
"jest-enzyme": "^7.1.2",
"react": "^18.2.0",
"react-native": "^0.70.5",
"react-test-renderer": "^18.2.0",
"ts-jest": "^25.5.1",
"typescript": "^3.9.7"
},
"dependencies": {
"react-native-section-list-get-item-layout": "^2.2.3"
}
}