-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
65 lines (65 loc) · 1.52 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
{
"name": "react-native-shadow-2",
"version": "7.1.1",
"description": "Cross-platform shadow for React Native. Improved version of the abandoned react-native-shadow package",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"/lib"
],
"scripts": {
"test": "",
"clean": "rimraf lib",
"build": "npm run clean && tsc",
"prepare": "npm run build",
"prepublishOnly": "npm run test",
"sandbox": "npm run --prefix ./sandbox web"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SrBrahma/react-native-shadow-2.git"
},
"keywords": [
"shadow",
"shadows",
"react-native",
"native",
"gradient",
"ios",
"android",
"react",
"cross-platform",
"automatic",
"typescript",
"cross",
"blur",
"shadow-2",
"native-shadow",
"svg"
],
"author": "Henrique Bruno (aka SrBrahma)",
"license": "ISC",
"bugs": {
"url": "https://github.com/SrBrahma/react-native-shadow-2/issues"
},
"homepage": "https://github.com/SrBrahma/react-native-shadow-2#readme",
"dependencies": {
"colord": "2.9.2"
},
"devDependencies": {
"@types/react-native": "*",
"eslint-config-gev": "^3.2.0",
"prettier": "^2.8.6",
"prettier-config-gev": "^1.1.2",
"react": "*",
"react-native": "*",
"react-native-svg": ">=12.1.0",
"rimraf": "^3.0.0",
"typescript": "^4.0.0"
},
"peerDependencies": {
"react-native": "*",
"react-native-svg": ">=12.1.0"
},
"prettier": "prettier-config-gev"
}