-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
60 lines (60 loc) · 1.32 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
{
"name": "react-native-easing-gradient",
"description": "Create smooth gradients in React Native",
"version": "1.1.1",
"author": "Tien Pham",
"main": "lib/commonjs/index.js",
"license": "MIT",
"source": "src/index.ts",
"react-native": "src/index.ts",
"module": "lib/module/index.js",
"types": "lib/typescript/index.d.ts",
"scripts": {
"prepare": "bob build && husky install",
"lint": "tsc --noEmit && eslint src --ext ts,tsx"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@types/react": "~18.2.14",
"@types/react-native": "~0.63.2",
"eslint": "^8.57.0",
"eslint-config-react-app": "^7.0.1",
"husky": "^6.0.0",
"prettier": "^2.2.1",
"react": "18.2.0",
"react-native": "0.73.4",
"react-native-builder-bob": "^0.17.1",
"typescript": "^5.1.3"
},
"files": [
"src",
"lib",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__"
],
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
},
"keywords": [
"react",
"react-native",
"gradients",
"easing",
"smooth",
"expo"
],
"repository": {
"type": "git",
"url": "https://github.com/tienphaw/react-native-easing-gradient.git"
}
}