forked from halilb/rn-credit-card
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
93 lines (93 loc) · 2.03 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "rn-credit-card",
"version": "1.0.2",
"description": "Credit card form for react native",
"license": "MIT",
"keywords": [
"react",
"react-component",
"react-native",
"credit card input",
"credit card form",
"textfield",
"animation",
"animated",
"ios",
"android"
],
"main": "lib/commonjs/index",
"scripts": {
"start": "yarn start",
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"tsc": "tsc --noEmit",
"build": "bob build",
"example": "yarn --cwd example",
"bootstrap": "yarn install && yarn example"
},
"repository": {
"type": "git",
"url": "git+https://github.com/halilb/rn-credit-card.git"
},
"dependencies": {
"card-validator": "^8.1.0",
"react-native-card-flip": "^1.0.7"
},
"peerDependencies": {
"lottie-react-native": ">3.0.0",
"react-hook-form": ">7.0.0"
},
"devDependencies": {
"@babel/core": "~7.9.0",
"@react-native-community/eslint-config": "^2.0.0",
"@testing-library/react-native": "^7.1.0",
"@types/jest": "^26.0.20",
"@types/react": "~16.9.35",
"@types/react-native": "~0.63.2",
"bdd-lazy-var": "^2.6.0",
"eslint": "^7.19.0",
"husky": ">=4",
"lint-staged": ">=10",
"react-hook-form": "^7.3.4",
"react-native-builder-bob": "^0.17.1",
"react-test-renderer": "^17.0.1",
"typescript": "~4.2.4"
},
"jest": {
"modulePathIgnorePatterns": [
"<rootDir>/lib/"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix"
},
"react-native": "src/index.ts",
"module": "lib/module/index.js",
"types": "lib/typescript/index.d.ts",
"files": [
"src",
"lib",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__"
],
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
},
"eslintIgnore": [
"node_modules/",
"lib/",
"example/"
]
}