-
Notifications
You must be signed in to change notification settings - Fork 131
/
Copy pathpackage.json
86 lines (86 loc) · 2.3 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
86
{
"name": "react-native-skeleton-content",
"version": "1.0.28",
"description": "A simple and fully customizable React Native component that implements a skeleton-like loader",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"keywords": [
"react native",
"skeleton",
"loader",
"placeholders",
"gradient",
"animation"
],
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"format": "prettier --write src/**/*.{ts,tsx}",
"lint": "eslint --fix src/**/*.{ts,tsx}",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"test": "jest --no-watchman",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls"
},
"jest": {
"preset": "jest-expo",
"setupFiles": [
"./setup-test.ts"
],
"moduleFileExtensions": [
"js",
"jsx",
"json",
"ts",
"tsx"
],
"transform": {
"^.+\\.(js|jsx|ts|tsx)$": "babel-jest"
},
"testMatch": [
"**/*.test.ts?(x)"
],
"coveragePathIgnorePatterns": [
"./src/__tests__/"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexZajac/react-native-skeleton-content.git"
},
"author": "Alexandre Zajac",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexZajac/react-native-skeleton-content/issues"
},
"homepage": "https://github.com/alexZajac/react-native-skeleton-content#readme",
"devDependencies": {
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^26.0.24",
"@types/react": "18.0.0",
"@types/react-native": "^0.69.5",
"@types/react-test-renderer": "18.0.0",
"babel-preset-expo": "^9.2.0",
"coveralls": "^3.1.1",
"eslint": "8.22.0",
"eslint-config-airbnb-typescript-prettier": "^5.0.0",
"jest": "^26.0.24",
"jest-expo": "^46.0.0",
"prettier": "^2.7.1",
"react": "18.0.0",
"react-native": "^0.69.5",
"react-native-gesture-handler": "^2.5.0",
"react-test-renderer": "18.0.0",
"typescript": "4.4.4"
},
"dependencies": {
"expo-linear-gradient": "^11.4.0",
"react-native-reanimated": "2.10.0",
"react-native-redash": "^16.3.0"
}
}