-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.68 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
{
"name": "@ja-ka/react-native-fade-in-flatlist",
"version": "1.0.13",
"private": false,
"description": "An advanced React Native FlatList component with fade-in support for rendered items.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"test": "rm -rf ./coverage && jest",
"test:debug": "rm -rf ./coverage && node --inspect ./node_modules/jest/bin/jest",
"test:update": "rm -rf ./coverage && jest --updateSnapshot",
"build": "rm -rf ./lib && tsc --project ./tsconfig.json",
"pub": "npm run build && npm version patch && npm publish",
"lint": "tslint --fix -p ./tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ja-ka/react-native-fade-in-flatlist.git"
},
"keywords": [
"react-native",
"flatlist",
"fade-in"
],
"author": "Jascha Kanngiesser",
"license": "MIT",
"bugs": {
"url": "https://github.com/ja-ka/react-native-fade-in-flatlist/issues"
},
"homepage": "https://github.com/ja-ka/react-native-fade-in-flatlist#readme",
"devDependencies": {
"@babel/core": "^7.19.1",
"@babel/runtime": "^7.19.0",
"@testing-library/react-native": "^11.1.0",
"@types/jest": "^29.0.3",
"@types/react": "^18.0.21",
"@types/react-native": "^0.70.3",
"jest": "^29.0.3",
"jest-junit": "^14.0.1",
"metro-react-native-babel-preset": "^0.72.3",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-native": "^0.70.1",
"react-test-renderer": "^18.2.0",
"tslint": "^6.1.3",
"typescript": "^4.8.3"
},
"peerDependencies": {
"react": "^18.2.0",
"react-native": "^0.70.1"
},
"directories": {
"lib": "lib"
}
}