forked from alexZajac/react-native-skeleton-content
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
90 lines (90 loc) · 2.49 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
87
88
89
90
{
"name": "@03balogun/react-native-skeleton-content",
"version": "1.0.25",
"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/**/*.{js,jsx,ts,tsx}",
"lint": "eslint --fix src/**/*.{js,jsx,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.js"
],
"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/03balogun/react-native-skeleton-content.git"
},
"author": "Balogun Wahab",
"license": "MIT",
"bugs": {
"url": "https://github.com/03balogun/react-native-skeleton-content/issues"
},
"homepage": "https://github.com/03balogun/react-native-skeleton-content#readme",
"devDependencies": {
"@babel/preset-typescript": "^7.10.1",
"@types/jest": "^24.0.18",
"@types/react": "^16.9.5",
"@types/react-native": "^0.60.19",
"@types/react-test-renderer": "^16.9.2",
"@unimodules/react-native-adapter": "^5.2.0",
"babel-preset-expo": "^8.2.1",
"coveralls": "^3.0.7",
"eslint": "^7.2.0",
"eslint-config-airbnb-typescript-prettier": "^2.1.1",
"jest": "^24.9.0",
"jest-expo": "^37.0.0",
"prettier": "^1.18.2",
"react": "^16.10.2",
"react-native": "^0.62.2",
"react-native-gesture-handler": "^1.6.1",
"react-native-reanimated": "^2.1.0",
"react-native-unimodules": "^0.7.0-rc.1",
"react-test-renderer": "^16.13.1",
"typescript": "4.4.4"
},
"dependencies": {
"react-native-redash": "^16.2.4",
"expo-modules-core": "^0.9.1",
"expo-linear-gradient": "~11.3.0",
"react-native-reanimated": "~2.8.0"
}
}