-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.96 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
{
"name": "@geekofia/react-native-components",
"version": "0.0.2",
"description": "Simple Yet Essential React Native Components",
"react-native": "src/index.ts",
"types": "lib/typescript/index.d.ts",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"files": [
"lib/",
"src/",
"babel.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/chankruze/react-native-components.git"
},
"keywords": [
"android",
"ios",
"react-native-components",
"react-native",
"react-component",
"component library",
"ui kit"
],
"author": "Chandan Kumar Mandal (chankruze)",
"license": "GPL-v3",
"bugs": {
"url": "https://github.com/chankruze/react-native-components/issues"
},
"homepage": "https://github.com/chankruze/react-native-components#readme",
"scripts": {
"typescript": "tsc --noEmit",
"lint": "eslint --ext '.js,.ts,.tsx' .",
"test": "jest",
"prepare": "bob build",
"build": "bob build",
"example": "npm run android --prefix example"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
],
"files": [
"src/"
]
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^2.0.0",
"@types/jest": "^26.0.24",
"@types/react": "^18.0.14",
"@types/react-native": "^0.67.8",
"@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^7.32.0",
"jest": "^28.1.1",
"metro-react-native-babel-preset": "^0.67.0",
"react": "^17.0.2",
"react-native": "^0.68.2",
"react-native-builder-bob": "^0.18.2",
"react-test-renderer": "17.0.2",
"ts-jest": "^28.0.5",
"typescript": "^4.7.4"
}
}