forked from rohailaltaf/react-native-inset-shadow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.51 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.51 KB
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
{
"name": "@wave909/react-native-inset-shadow",
"version": "2.1.2",
"description": "Inset shadows for react native components",
"main": "lib/module/index.js",
"module": "lib/module/index.js",
"types": "lib/typescript/index.d.ts",
"react-native": "lib/module/index.js",
"scripts": {
"build": "tsc --project ./tsconfig.json",
"lint": "tslint --fix -p ./tsconfig.json",
"prepare": "bob build",
"ts-check": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wave909/react-native-inset-shadow.git"
},
"keywords": [
"react",
"native",
"inset",
"shadow",
"component"
],
"author": "Rohail Altaf",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/wave909/react-native-inset-shadow/issues"
},
"homepage": "https://github.com/wave909/react-native-inset-shadow#readme",
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@types/lodash": "^4.14.173",
"@types/react": "^17.0.21",
"@types/react-native": "^0.65.0",
"eslint": "^7.32.0",
"react": "^17.0.2",
"react-native": "^0.65.1",
"react-native-builder-bob": "^0.18.1",
"typescript": "^4.4.3"
},
"dependencies": {
"react-native-drop-shadow": "0.0.4"
},
"files": [
"src",
"lib",
"lib/**/*"
],
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"module",
"typescript"
]
},
"eslintIgnore": [
"node_modules/",
"lib/"
]
}