-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
47 lines (47 loc) · 1.19 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
{
"name": "react-native-svg-path-gradient",
"version": "0.4.0",
"description": "A utility for creating gradient paths with react-native-svg",
"main": "index.js",
"scripts": {
"lint": "npx eslint .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/investingwolf/react-native-svg-path-gradient.git"
},
"author": "Michel Kassabov",
"license": "MIT",
"bugs": {
"url": "https://github.com/investingwolf/react-native-svg-path-gradient/issues"
},
"homepage": "https://github.com/investingwolf/react-native-svg-path-gradient#readme",
"keywords": [
"svg",
"gradient",
"path",
"linear",
"react-native",
"react-native-component",
"ios",
"android"
],
"peerDependencies": {
"react": "*",
"react-native": ">=0.50.0",
"react-native-svg": ">=6.0.0"
},
"dependencies": {
"color": "^3.1.3",
"prop-types": "^15.7.2",
"svg-path-properties": "^1.0.10"
},
"devDependencies": {
"@react-native-community/eslint-config": "^2.0.0",
"eslint": "^7.15.0",
"react": "^17.0.1",
"react-native": "^0.63.4",
"react-native-svg": "^12.1.0"
}
}