-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathpackage.json
86 lines (86 loc) · 2.4 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-nonexpo",
"version": "1.0.13",
"description": "A simple and fully customizable React Native component that implements a skeleton-like loader",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"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": "react-native",
"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/alexZajac/react-native-skeleton-content-nonexpo.git"
},
"keywords": [
"node",
"npm"
],
"bugs": {
"url": "https://github.com/alexZajac/react-native-skeleton-content-nonexpo/issues"
},
"homepage": "https://github.com/alexZajac/react-native-skeleton-content-nonexpo#readme",
"dependencies": {
"react-native-redash": "^16.0.11"
},
"peerDependencies": {
"react-native-linear-gradient": "^2.5.1",
"react-native-reanimated": "^2.1.0"
},
"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",
"babel-jest": "^25.5.1",
"babel-preset-expo": "^8.2.1",
"coveralls": "^3.1.0",
"eslint": "^7.2.0",
"eslint-config-airbnb-typescript-prettier": "^2.1.1",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"react": "^16.10.2",
"react-native": "^0.62.3",
"react-native-gesture-handler": "^1.7.0",
"react-native-linear-gradient": "^2.5.6",
"react-native-reanimated": "^2.1.0",
"react-test-renderer": "^16.13.1",
"typescript": "^3.7.2"
},
"author": "Alexandre Zajac",
"license": "MIT"
}